We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a52195a commit 7baa55eCopy full SHA for 7baa55e
.github/workflows/bot-prs.yml
@@ -16,7 +16,8 @@ jobs:
16
run: |
17
number=${{ github.event.pull_request.number }}
18
is_bot=$(gh pr view $number --json author --jq '.author.is_bot')
19
- if [[ $is_bot == "true" ]]; then
+ bot_login=$(gh pr view $number --json author --jq '.author.login')
20
+ if [[ $is_bot == "true" && $bot_login != "copilot-swe-agent" ]]; then
21
gh pr edit $number --add-label "no releasenotes"
22
fi
23
env:
0 commit comments