Skip to content

Commit 93bb3e8

Browse files
authored
Auto Assign Pull Requests (#791)
* Created Codeowners file * Added PR auto assignment to Chris * Removed assignee from workflow. Added separate file * Updated the steps to use 2.0. Removed default assignees * Put auto_assign.yml in the wrong place. * Updated naming convention. Closes #746
1 parent f65236c commit 93bb3e8

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/auto_assignee.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
addAssignees: true
2+
assignees:
3+
- ckenst

.github/workflows/auto-assign.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Auto Assign PRs
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened, synchronize, ready_for_review]
6+
7+
jobs:
8+
add_assignees:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: kentaro-m/[email protected]
12+
with:
13+
configuration-path: .github/auto_assignee.yml
14+
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)