Commit bbdbb60 1 parent 6cf19c7 commit bbdbb60 Copy full SHA for bbdbb60
File tree 5 files changed +98
-24
lines changed
5 files changed +98
-24
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,13 @@ body:
22
22
- type : dropdown
23
23
id : subteam
24
24
attributes :
25
- label : >
26
- Which category does this issue belong to?
27
- description : >
28
- Answering this will help us triage this issue faster and more accurately to the
29
- relevant team(s).
25
+ label : Which category does this issue belong to?
26
+ description : Help us triage this issue faster and more accurately to the relevant team(s).
30
27
multiple : true
31
28
options :
32
29
- Android
33
- - C++/Objective-C Rules
30
+ - C++ Rules
31
+ - Objective-C Rules
34
32
- CLI
35
33
- Configurability
36
34
- Core
Original file line number Diff line number Diff line change @@ -25,25 +25,23 @@ body:
25
25
Which category does this issue belong to? Please select the corresponding label(s).
26
26
multiple : true
27
27
options :
28
- - team-CLI
29
- - team-OSS
30
- - team-Core
31
- - team-Bazel
32
28
- team-Android
33
- - z-team-Apple
34
- - team-Rules-API
35
29
- team-Rules-CPP
36
- - team-Local-Exec
37
- - team-Rules-Java
38
30
- team-Rules-ObjC
31
+ - team-CLI
32
+ - team-Configurability
33
+ - team-Core
34
+ - team-Documentation
35
+ - team-ExternalDeps
36
+ - team-Rules-Java
39
37
- team-Loading-API
38
+ - team-Local-Exec
39
+ - team-OSS
40
40
- team-Performance
41
- - team-Remote-Exec
42
- - team-ExternalDeps
43
41
- team-Rules-Python
42
+ - team-Remote-Exec
43
+ - team-Rules-API
44
44
- team-Rules-Server
45
- - team-Documentation
46
- - team-Configurability
47
45
- team-Starlark-Integration
48
46
- team-Starlark-Interpreter
49
47
- type : textarea
Original file line number Diff line number Diff line change @@ -22,15 +22,13 @@ body:
22
22
- type : dropdown
23
23
id : subteam
24
24
attributes :
25
- label : >
26
- Which category does this issue belong to?
27
- description : >
28
- Answering this will help us triage this issue faster and more accurately to the
29
- relevant team(s).
25
+ label : Which category does this issue belong to?
26
+ description : Help us triage this issue faster and more accurately to the relevant team(s).
30
27
multiple : true
31
28
options :
32
29
- Android
33
- - C++/Objective-C Rules
30
+ - C++ Rules
31
+ - Objective-C Rules
34
32
- CLI
35
33
- Configurability
36
34
- Core
Original file line number Diff line number Diff line change
1
+ ---
2
+
3
+ policy :
4
+ - template : [bug_report.yml, feature_request.yml]
5
+ section :
6
+ - id : [subteam]
7
+ label :
8
+ - name : team-Android
9
+ keys : ['Android']
10
+ - name : team-Rules-CPP
11
+ keys : ['C++ Rules']
12
+ - name : team-Rules-ObjC
13
+ keys : ['Objective-C Rules']
14
+ - name : team-CLI
15
+ keys : ['CLI']
16
+ - name : team-Configurability
17
+ keys : ['Configurability']
18
+ - name : team-Core
19
+ keys : ['Core']
20
+ - name : team-Documentation
21
+ keys : ['Documentation']
22
+ - name : team-ExternalDeps
23
+ keys : ['External Dependency']
24
+ - name : team-Rules-Java
25
+ keys : ['Java Rules']
26
+ - name : team-Loading-API
27
+ keys : ['Loading API']
28
+ - name : team-Local-Exec
29
+ keys : ['Local Execution']
30
+ - name : team-Performance
31
+ keys : ['Performance']
32
+ - name : team-Rules-Python
33
+ keys : ['Python Rules']
34
+ - name : team-Remote-Exec
35
+ keys : ['Remote Execution']
36
+ - name : team-Rules-API
37
+ keys : ['Rules API']
38
+ - name : team-Rules-Server
39
+ keys : ['Server-Side Rules']
40
+ - name : team-Starlark-Integration
41
+ keys : ['Starlark Integration']
42
+ - name : team-Starlark-Interpreter
43
+ keys : ['Starlark Interpreter']
Original file line number Diff line number Diff line change
1
+ ---
2
+
3
+ name : Issue labeler
4
+ on :
5
+ issues :
6
+ types : [ opened ]
7
+
8
+ jobs :
9
+ label-issues-policy :
10
+ runs-on : ubuntu-latest
11
+ permissions :
12
+ contents : read
13
+ issues : write
14
+
15
+ strategy :
16
+ matrix :
17
+ template : [ bug_report.yml, feature_request.yml ]
18
+
19
+ steps :
20
+ - uses : actions/checkout@v3
21
+ - name : Harden Runner
22
+ uses : step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
23
+ with :
24
+ egress-policy : audit
25
+
26
+ - name : Parse issue form
27
+ uses : stefanbuck/github-issue-parser@c1a559d78bfb8dd05216dab9ffd2b91082ff5324 # v3.0.1
28
+ id : issue-parser
29
+ with :
30
+ template-path : .github/ISSUE_TEMPLATE/${{ matrix.template }}
31
+
32
+ - name : Set labels based on policy
33
+ uses : redhat-plumbers-in-action/advanced-issue-labeler@6ee6fddfd744ee26b977e6a0436916f256896971 # v2.0.3
34
+ with :
35
+ issue-form : ${{ steps.issue-parser.outputs.jsonString }}
36
+ template : ${{ matrix.template }}
37
+ token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments