mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-19 23:11:35 +03:00
14 lines
379 B
YAML
14 lines
379 B
YAML
|
# 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}}
|