Skip to content

Commit 48a0e25

Browse files
authored
Fix condition for event name in auto-assign workflow
1 parent e6160f0 commit 48a0e25

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
@@ -12,7 +12,7 @@ jobs:
1212
pull-requests: write
1313
steps:
1414
- name: Auto-assign and request reviewers
15-
if: github.event_name == 'issue' || github.event_name == 'pull_request'
15+
if: github.event_name == 'issues' || github.event_name == 'pull_request'
1616
uses: wachawo/github-auto-assign@v1
1717
with:
1818
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)