summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-06-09 19:01:41 +0200
committerGitHub <noreply@github.com>2021-06-09 19:01:41 +0200
commite15affc5f7fc2a0ed83708aed23f514a29c6b097 (patch)
tree112783f36e4874adf97d2cd980ad3bce036eaca5 /.github
parent6bbabdf2adaec1f6fa05926d373020e99e1a6ccd (diff)
downloadvyos-1x-e15affc5f7fc2a0ed83708aed23f514a29c6b097.tar.gz
vyos-1x-e15affc5f7fc2a0ed83708aed23f514a29c6b097.zip
GitHub: add action to assign PR author as assignee
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/auto-author-assign.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml
new file mode 100644
index 000000000..cd30420f3
--- /dev/null
+++ b/.github/workflows/auto-author-assign.yml
@@ -0,0 +1,13 @@
+name: "Assign Author to PR"
+on:
+ pull_request_target:
+ types: [opened, reopened, ready_for_review, locked]
+
+permissions:
+ pull-requests: write
+
+jobs:
+ assign-author:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: toshimaru/auto-author-assign@v1.3.5