From a88798f04b16a731462772d007c33293e066b1fb Mon Sep 17 00:00:00 2001 From: Chris Werner Rau Date: Wed, 6 Dec 2023 10:48:46 +0100 Subject: [PATCH] feat(ci): allow teutonet-bot to merge pull requests --- .github/scripts/sync-codeowners.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/sync-codeowners.sh b/.github/scripts/sync-codeowners.sh index 7fbce3ad6..12813e578 100755 --- a/.github/scripts/sync-codeowners.sh +++ b/.github/scripts/sync-codeowners.sh @@ -9,5 +9,5 @@ for DIR in ./charts/*; do FILE="$DIR/Chart.yaml" DIR="${DIR//\./}" MAINTAINERS="$(yq e '.maintainers.[].name' "$FILE" | sed 's/^/@/' | sort --ignore-case | tr '\r\n' ' ')" - echo -e "$DIR/ $MAINTAINERS" + echo -e "$DIR/ $MAINTAINERS @teutonet-bot" done | sort