Skip to content

Commit

Permalink
Add GHA workflow to auto-assign issues & PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
douglatornell committed Mar 28, 2023
1 parent a116e6b commit 99b7a26
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/assign-issue-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Automatically assign new or reopened issues and pull requests in this
# repo to Doug

name: Assign Issue/PR
on:
issues:
types:
- reopened
- opened
pull_request:
types:
- reopened
- opened
jobs:
auto_assign:
permissions:
issues: write
pull-requests: write
uses: UBC-MOAD/gha-workflows/.github/workflows/auto-assign.yaml@main

0 comments on commit 99b7a26

Please sign in to comment.