Skip to content

Commit 6d74f47

Browse files
committed
feat: assign actions
1 parent 789bc76 commit 6d74f47

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/assign-actions.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Assign PR opener
2+
on:
3+
pull_request:
4+
branches: [ main ]
5+
types: [ opened ]
6+
jobs:
7+
assign:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Assign PR opener
11+
uses: peter-evans/[email protected]
12+
with:
13+
repo-token: ${{ secrets.GITHUB_TOKEN }}
14+
assignees: ${{ github.event.pull_request.user.login }}

0 commit comments

Comments
 (0)