Skip to content

Commit b475306

Browse files
authored
refactor: Update condition to exclude all bots from assignment (#3245)
1 parent bc14054 commit b475306

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.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)