-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9269ad8
commit 55b4c4a
Showing
2 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
name: Auto assign issues | ||
name: Auto assign issues and pull requests | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
pull_request: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
run: | ||
|
@@ -12,11 +15,11 @@ jobs: | |
issues: write | ||
pull-requests: write | ||
steps: | ||
- name: Assign issues | ||
- name: Assign issues and pull requests | ||
uses: gustavofreze/[email protected] | ||
with: | ||
assignees: '${{ secrets.ASSIGNEES }}' | ||
github_token: '${{ secrets.GITHUB_TOKEN }}' | ||
allow_self_assign: 'true' | ||
allow_no_assignees: 'true' | ||
assignment_options: 'ISSUE' | ||
assignment_options: 'ISSUE,PULL_REQUEST' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters