Skip to content

Commit

Permalink
Add workflow for autoassign and put reviewers (#16)
Browse files Browse the repository at this point in the history
Signed-off-by: David Kornel <[email protected]>
  • Loading branch information
kornys authored Feb 22, 2024
1 parent 1458bfd commit 1c31a92
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Set to true to add reviewers to pull requests
addReviewers: true

# Set to true to add assignees to pull requests
addAssignees: author

# A list of reviewers to be added to pull requests (GitHub user name)
reviewers:
- kornys
- Frawless
- im-konge

# A number of reviewers added to the pull request
# Set 0 to add all the reviewers (default: 0)
numberOfReviewers: 0
10 changes: 10 additions & 0 deletions .github/workflows/auto_assign.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Skodjob bot
on:
pull_request:
types: [opened, ready_for_review]

jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/[email protected]

0 comments on commit 1c31a92

Please sign in to comment.