mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-06 08:34:14 +01:00
🏗️ Action to auto-assign author as PR reviewer
This commit is contained in:
parent
6b8262c12e
commit
7b2ef2dda5
1 changed files with 14 additions and 0 deletions
14
.github/workflows/assign-reviewer.yml
vendored
Normal file
14
.github/workflows/assign-reviewer.yml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Automatically assigns the author as a reviewer to opened PRs and issues
|
||||
name: 💡 Auto-Assign Author to PR
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened]
|
||||
issues:
|
||||
types: [opened]
|
||||
jobs:
|
||||
assign-author:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Assign author
|
||||
uses: technote-space/assign-author@v1
|
||||
GITHUB_TOKEN: ${{secrets.BOT_GITHUB_TOKEN}}
|
||||
Loading…
Reference in a new issue