Skip to content

Commit

Permalink
Merge pull request #1 from pink-bean/main
Browse files Browse the repository at this point in the history
Setup GitHub Actions workflow
  • Loading branch information
melvincwng authored Aug 10, 2023
2 parents c18f178 + 2688356 commit d9cb356
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Set to true to add reviewers to issues/PRs
addReviewers: true

# Set to 'author' to add issue's/PR's author as a assignee
addAssignees: author

# A list of reviewers to be added to issues/PRs (GitHub user name)
reviewers:
- melvincwng

# A number of reviewers added to the issues/PRs
# Set 0 to add all the reviewers (default: 0)
numberOfReviewers: 0

# A number of assignees to add to the issues/PRs
# Set to 0 to add all of the assignees
# If unset, it uses numberOfReviewers, hence also setting reviewers as assignees
numberOfAssignees: 0

# A list of keywords to be skipped the process if issue/PR's title include it
skipKeywords:
- wip
15 changes: 15 additions & 0 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Auto Assign
on:
issues:
types: [opened]
pull_request_target:
types: [opened]
push:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/auto-assign@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG_FILE: .github/auto-assign.yml

0 comments on commit d9cb356

Please sign in to comment.