Skip to content

Commit

Permalink
add workflow to auto assign pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Armstrong committed Sep 13, 2024
1 parent 0ee57f1 commit 2f6a058
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
addReviewers: true
addAssignees: false

reviewers:
- Sam-Armstrong
- hmahmood24
- YushaArif99

numberOfReviewers: 1
15 changes: 15 additions & 0 deletions .github/workflows/assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Auto Assign'
on:
pull_request:
types: [opened]
pull_request_target:
types: [opened]
issues:
types: [opened]
jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/[email protected]
with:
configuration-path: '.github/auto_assign.yml'

0 comments on commit 2f6a058

Please sign in to comment.