Skip to content

Commit

Permalink
ci: Do not run external contributor job for bots (#12886)
Browse files Browse the repository at this point in the history
While we specifically ignored dependabot, we did not ignore github bot.
So now, just generally skipping this for any bot users.
  • Loading branch information
mydea committed Jul 16, 2024
1 parent 383743a commit f9ab138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/external-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
&& github.event.pull_request.author_association != 'COLLABORATOR'
&& github.event.pull_request.author_association != 'MEMBER'
&& github.event.pull_request.author_association != 'OWNER'
&& github.actor != 'dependabot[bot]'
&& endsWith(github.actor, '[bot]') == false
steps:
- uses: actions/checkout@v4
- name: Set up Node
Expand Down

0 comments on commit f9ab138

Please sign in to comment.