Skip to content

Commit

Permalink
Remove PR message workflow check for bots (#2598)
Browse files Browse the repository at this point in the history
Previously, adding a new contributor triggers a PR message workflow to
check for PR messages. By default, no PR message is added by the bot.

Removing the check for PR messages for bots will likely not affect any
essential checks.
  • Loading branch information
Incogdino authored Feb 12, 2025
1 parent 4ed8781 commit fc2893d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-message-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

jobs:
remind-pr-author:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && !endsWith(github.actor, '[bot]')
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down

0 comments on commit fc2893d

Please sign in to comment.