File tree Expand file tree Collapse file tree 2 files changed +108
-3
lines changed Expand file tree Collapse file tree 2 files changed +108
-3
lines changed Original file line number Diff line number Diff line change
1
+ - name : BLOCKER
2
+ description : No further development until this is fixed.
3
+ color : 000000
4
+
5
+ - name : BUG
6
+ description : " "
7
+ color : 994d00
8
+
9
+ - name : CI/CD
10
+ description : " "
11
+ color : b5f226
12
+
13
+ - name : Critical Priority
14
+ description : " "
15
+ color : ff0000
16
+
17
+ - name : Dependencies
18
+ description : Dependencies
19
+ color : a5db76
20
+
21
+ - name : Discussion
22
+ description : " "
23
+ color : bfdec3
24
+
25
+ - name : DO NOT MERGE
26
+ description : " "
27
+ color : 4f18e7
28
+
29
+ - name : Documentation
30
+ description : " "
31
+ color : bdd9db
32
+
33
+ - name : Duplicate
34
+ description : " "
35
+ color : cccccc
36
+
37
+ - name : Enhancement
38
+ description : Improve any current implemented feature.
39
+ color : 80b5ea
40
+
41
+ - name : Examples
42
+ description : " "
43
+ color : bfdec3
44
+
45
+ - name : Future
46
+ description : To work on it in the future.
47
+ color : c2ddf4
48
+
49
+ - name : Good First Issue
50
+ description : Good and easy issue to start to work in PyANSYS development.
51
+ color : f9cfc3
52
+
53
+ - name : Help wanted
54
+ description : Tell the developers you need help or guidance.
55
+ color : 12880c
56
+
57
+ - name : Maintenance
58
+ description : Maintenance
59
+ color : bbd2f1
60
+
61
+ - name : Major Priority
62
+ description : " "
63
+ color : ff7300
64
+
65
+ - name : MAPDL
66
+ description : Requires changes in MAPDL
67
+ color : 000000
68
+
69
+ - name : Minor Priority
70
+ description : " "
71
+ color : ffdd00
72
+
73
+ - name : New Feature
74
+ description : Request/proposal for a new feature
75
+ color : 235370
76
+
77
+ - name : Question
78
+ description : " "
79
+ color : c9317d
80
+
81
+ - name : Stale
82
+ description : Stale issue, it will be closed.
83
+ color : c106be
84
+
85
+ - name : Support
86
+ description : " "
87
+ color : 54afbb
88
+
89
+ - name : Won't fix
90
+ description : " "
91
+ color : ffffff
Original file line number Diff line number Diff line change 1
1
name : " Pull Request Labeler"
2
2
on :
3
3
pull_request :
4
- types :
5
- - unlabeled
4
+ push :
5
+ branches : [ main ]
6
+ paths :
7
+ - ' ../labels.yml'
6
8
7
9
concurrency :
8
10
group : ${{ github.workflow }}-${{ github.ref }}
9
11
cancel-in-progress : true
10
12
11
13
jobs :
12
14
15
+ label-syncer :
16
+ name : Syncer
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - uses : actions/checkout@v2
20
+ - uses : micnncim/action-label-syncer@v1
21
+ env :
22
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
23
+
13
24
labeler :
25
+ name : Set labels
26
+ needs : [label-syncer]
14
27
permissions :
15
28
contents : read
16
29
pull-requests : write
66
79
- name : Suggest to add labels
67
80
uses : peter-evans/create-or-update-comment@v2
68
81
# Execute only when no labels have been applied to the pull request
69
- if : toJSON(github.event.pull_request.labels.*.name) == '[]'
82
+ # if: toJSON(github.event.pull_request.labels.*.name) == '[]'
83
+ if : github.event.pull_request.labels[0] == null # Empty labels
70
84
with :
71
85
issue-number : ${{ github.event.pull_request.number }}
72
86
body : |
You can’t perform that action at this time.
0 commit comments