This repository was archived by the owner on May 20, 2024. It is now read-only.
Commit 65874eb 1 parent 60448df commit 65874eb Copy full SHA for 65874eb
File tree 3 files changed +83
-0
lines changed
3 files changed +83
-0
lines changed Original file line number Diff line number Diff line change
1
+ [
2
+ {
3
+ "name" : " infrastructure" ,
4
+ "color" : " 6f42c1" ,
5
+ "description" : " 環境構築やCI/CDパイプラインの設定・問題に関連するタスク" ,
6
+ "delete" : true
7
+ },
8
+ {
9
+ "name" : " bug" ,
10
+ "color" : " F05032" ,
11
+ "description" : " ソフトウェアの動作に問題があることを示すバグ" ,
12
+ "delete" : true
13
+ },
14
+ {
15
+ "name" : " security" ,
16
+ "color" : " F05032" ,
17
+ "description" : " セキュリティに関連する問題や脆弱性" ,
18
+ "delete" : true
19
+ },
20
+ {
21
+ "name" : " feature" ,
22
+ "color" : " 0E4BDB" ,
23
+ "description" : " 新しい機能" ,
24
+ "delete" : true
25
+ },
26
+ {
27
+ "name" : " enhancement" ,
28
+ "color" : " 84b6eb" ,
29
+ "description" : " 既存の機能の改善や拡張" ,
30
+ "delete" : true
31
+ },
32
+ {
33
+ "name" : " document" ,
34
+ "color" : " F4BFD0" ,
35
+ "description" : " ドキュメントの追加や修正を必要とする項目" ,
36
+ "delete" : true
37
+ },
38
+ {
39
+ "name" : " refactor" ,
40
+ "color" : " AFD38D" ,
41
+ "description" : " コードのリファクタリングや構造の改善" ,
42
+ "delete" : true
43
+ },
44
+ {
45
+ "name" : " duplicate" ,
46
+ "color" : " C8C8C8" ,
47
+ "description" : " 他の既存のイシューやプルリクエストと内容が重複している項目" ,
48
+ "delete" : true
49
+ },
50
+ {
51
+ "name" : " invalid" ,
52
+ "color" : " E4E669" ,
53
+ "description" : " イシューやプルリクエストが不適切または関連性がない場合" ,
54
+ "delete" : true
55
+ },
56
+ {
57
+ "name" : " wontfix" ,
58
+ "color" : " C8C8C8" ,
59
+ "description" : " 現時点では修正の予定がない問題" ,
60
+ "delete" : true
61
+ }
62
+ ]
Original file line number Diff line number Diff line change
1
+ name : Label Sync
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - ' labels.json'
7
+
8
+ jobs :
9
+ label-sync :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Check out code
13
+ uses : actions/checkout@v2
14
+
15
+ - name : Sync labels
16
+ uses : lannonbr/issue-label-manager-action@2.0.0
17
+ with :
18
+ github-token : ${{ secrets.GITHUB_TOKEN }}
19
+ file : labels.json
Original file line number Diff line number Diff line change 1
1
{
2
2
"ignoreWords" : [
3
+ " wontfix" ,
4
+ " lannonbr" ,
3
5
" labstack" ,
4
6
" gopls" ,
5
7
" golangci" ,
You can’t perform that action at this time.
0 commit comments