Skip to content

Commit

Permalink
add workflow action to auto-assign PR owner
Browse files Browse the repository at this point in the history
  • Loading branch information
chizmw committed Apr 14, 2023
1 parent 62ae535 commit 8cb01fb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changes/unreleased/Added-20230414-233821.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
kind: Added
body: add workflow action to auto-assign PR owner
time: 2023-04-14T23:38:21.644286+01:00
custom:
GithubIssue: ""
16 changes: 16 additions & 0 deletions .github/workflows/assign-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
# .github/workflows/auto-author-assign.yml
name: Auto Author Assign

# yamllint disable-line rule:truthy
on:
- pull_request

permissions:
pull-requests: write

jobs:
assign-author:
runs-on: ubuntu-latest
steps:
- uses: toshimaru/[email protected]

0 comments on commit 8cb01fb

Please sign in to comment.