File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Auto Assign and Limit Issues
2
+ on :
3
+ issues :
4
+ types : [labeled, opened]
5
+
6
+ jobs :
7
+ auto-assign :
8
+ runs-on : ubuntu-latest
9
+
10
+ permissions :
11
+ issues : write
12
+
13
+ steps :
14
+ - name : Auto Assign for bug
15
+ uses : wow-actions/auto-assign@v3
16
+ with :
17
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
18
+ assignees : ajay-dhangar
19
+ includeLabels : bug
20
+
21
+ - name : Auto Assign for enhancement
22
+ uses : wow-actions/auto-assign@v3
23
+ with :
24
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25
+ assignees : ajay-dhangar
26
+ includeLabels : enhancement
27
+
28
+ limit-issues :
29
+ runs-on : ubuntu-latest
30
+
31
+ permissions :
32
+ issues : write
33
+
34
+ steps :
35
+ - name : Limit number of issues per user
36
+ uses : ./.github/actions/issue-limit
37
+ with :
38
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments