summaryrefslogtreecommitdiff
path: root/.github/workflows/autoassign.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/autoassign.yml')
-rw-r--r--.github/workflows/autoassign.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/autoassign.yml b/.github/workflows/autoassign.yml
new file mode 100644
index 0000000..d942069
--- /dev/null
+++ b/.github/workflows/autoassign.yml
@@ -0,0 +1,11 @@
+---
+name: AutoAssigner
+on: [pull_request]
+jobs:
+ assignAuthor:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: samspills/assign-pr-to-author@v1.0
+ if: github.event_name == 'pull_request' && github.event.action == 'opened'
+ with:
+ repo-token: '${{ secrets.GITHUB_TOKEN }}'