Skip to content

Commit e15fa6d

Browse files
authored
fix: Update condition to exclude all bots from assignment (#5168)
1 parent 7ed8d22 commit e15fa6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/auto-assign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions-ecosystem/action-add-assignees@v1
18-
if: ${{ github.actor != 'dependabot[bot]' }}
18+
if: ${{ !contains(github.actor,'[bot]') }}
1919
with:
2020
github_token: ${{ secrets.GITHUB_TOKEN }}
2121
assignees: ${{ github.actor }}

0 commit comments

Comments
 (0)