File tree 2 files changed +37
-0
lines changed
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Set to true to add reviewers to issues/PRs
2
+ addReviewers : true
3
+
4
+ # Set to 'author' to add issue's/PR's author as a assignee
5
+ addAssignees : author
6
+
7
+ # A list of reviewers to be added to issues/PRs (GitHub user name)
8
+ reviewers :
9
+ - melvincwng
10
+
11
+ # A number of reviewers added to the issues/PRs
12
+ # Set 0 to add all the reviewers (default: 0)
13
+ numberOfReviewers : 0
14
+
15
+ # A number of assignees to add to the issues/PRs
16
+ # Set to 0 to add all of the assignees
17
+ # If unset, it uses numberOfReviewers, hence also setting reviewers as assignees
18
+ numberOfAssignees : 0
19
+
20
+ # A list of keywords to be skipped the process if issue/PR's title include it
21
+ skipKeywords :
22
+ - wip
Original file line number Diff line number Diff line change
1
+ name : Auto Assign
2
+ on :
3
+ issues :
4
+ types : [opened]
5
+ pull_request_target :
6
+ types : [opened]
7
+ push :
8
+ jobs :
9
+ run :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : wow-actions/auto-assign@v1
13
+ with :
14
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
+ CONFIG_FILE : .github/auto-assign.yml
You can’t perform that action at this time.
0 commit comments