We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4fa31d commit 631e0b3Copy full SHA for 631e0b3
.github/workflows/auto-assign.yml
@@ -0,0 +1,33 @@
1
+name: Auto Assign
2
+on:
3
+ issues:
4
+ types: [opened]
5
+ pull_request:
6
7
+
8
+jobs:
9
+ assign-issues:
10
+ if: github.event_name == 'issues'
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ issues: write
14
+ steps:
15
+ - name: 'Auto-assign issue to AliceLJY'
16
+ uses: pozil/auto-assign-issue@v1
17
+ with:
18
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
19
+ assignees: AliceLJY
20
+ numOfAssignee: 1
21
22
+ assign-prs:
23
+ if: github.event_name == 'pull_request'
24
25
26
+ pull-requests: write
27
28
+ - name: 'Auto-assign PR to rwmjhb'
29
30
31
32
+ assignees: rwmjhb
33
0 commit comments