From 6d18d815c517469dd36904374dd866f1ac75f390 Mon Sep 17 00:00:00 2001 From: Ikhun Um Date: Wed, 31 Jan 2024 19:07:40 +0900 Subject: [PATCH] Fix the incorrect name of @dependabot in `check-workflow-write-permission.sh` `GITHUB_ACTOR` name of @dependabot is not `dependabot` but `dependabot[bot]. --- .github/check-workflow-write-permission.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/check-workflow-write-permission.sh b/.github/check-workflow-write-permission.sh index 60848b71ba0..7f6bc0e453a 100755 --- a/.github/check-workflow-write-permission.sh +++ b/.github/check-workflow-write-permission.sh @@ -20,8 +20,8 @@ if [[ "$WORKFLOW_CHANGES" -eq "0" ]]; then exit 0 fi -# dependabot is a special user that is used to update dependencies in the workflow files. -MAINTAINERS=("ikhoon" "dependabot" "jrhee17" "minwoox" "trustin") +# dependabot[bot] is a special user that is used to update dependencies in the workflow files. +MAINTAINERS=("ikhoon" "dependabot[bot]" "jrhee17" "minwoox" "trustin") for maintainer in "${MAINTAINERS[@]}" do if [[ $maintainer == "$GITHUB_ACTOR" ]]; then