Skip to content

Commit d9cb356

Browse files
authored
Merge pull request #1 from pink-bean/main
Setup GitHub Actions workflow
2 parents c18f178 + 2688356 commit d9cb356

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

Diff for: .github/auto-assign.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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

Diff for: .github/workflows/auto-assign.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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

0 commit comments

Comments
 (0)