Skip to content

Commit 7f672de

Browse files
authored
fix: support both Dependabot author formats in auto-merge workflow (#667)
1 parent b6c2d32 commit 7f672de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
echo "PR Mergeable: $PR_MERGEABLE"
7575
echo "PR State: $PR_STATE"
7676
77-
if [ "$PR_AUTHOR" = "dependabot[bot]" ]; then
77+
if [ "$PR_AUTHOR" = "dependabot[bot]" ] || [ "$PR_AUTHOR" = "app/dependabot" ]; then
7878
echo "is_dependabot=true" >> $GITHUB_OUTPUT
7979
else
8080
echo "is_dependabot=false" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)