Skip to content

Commit 2b117f9

Browse files
ci(github): add workflow auto-assign.yml
Signed-off-by: Mark <remarkablemark@users.noreply.github.com>
1 parent da6f151 commit 2b117f9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/auto-assign.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)