We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da6f151 commit 2b117f9Copy full SHA for 2b117f9
.github/workflows/auto-assign.yml
@@ -0,0 +1,13 @@
1
+name: auto-assign
2
+on: pull_request_target
3
+
4
+jobs:
5
+ auto-assign:
6
+ runs-on: ubuntu-latest
7
+ if: github.actor != 'dependabot[bot]' && github.event.action == 'opened
8
9
+ steps:
10
+ - name: Auto assign
11
+ run: gh pr edit ${{ github.event.pull_request.html_url }} --add-assignee ${{ github.event.pull_request.user.login }} --add-reviewer remarkablemark
12
+ env:
13
+ GITHUB_TOKEN: ${{ github.token }}
0 commit comments