File tree Expand file tree Collapse file tree 2 files changed +66
-0
lines changed Expand file tree Collapse file tree 2 files changed +66
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ labels :
3
+ - name : feat
4
+ description : 新機能
5
+ color : " A2EEEF"
6
+ - name : fix
7
+ description : バグ修正
8
+ color : " D73A4A"
9
+ - name : docs
10
+ description : ドキュメントのみの変更
11
+ color : " 0075CA"
12
+ - name : style
13
+ description : フォーマットの変更
14
+ color : " 7057ff"
15
+ - name : refactor
16
+ description : リファクタリングのための変更
17
+ color : " 0E8A16"
18
+ - name : perf
19
+ description : パフォーマンスの改善のための変更
20
+ color : " E4E669"
21
+ - name : test
22
+ description : 不足テストの追加や既存テストの修正
23
+ color : " E99695"
24
+ - name : build
25
+ description : ビルドシステムや外部依存に関する変更
26
+ color : " 006b75"
27
+ - name : ci
28
+ description : CI用の設定やスクリプト関する変更
29
+ color : " 000000"
30
+ - name : chore
31
+ description : その他の変更
32
+ color : " DDDDDD"
33
+ - name : revert
34
+ description : 以前のコミットに復帰
35
+ color : " FBCA04"
36
+
37
+ repos :
38
+ - name : raduwen/widgets
39
+ labels :
40
+ - feat
41
+ - fix
42
+ - docs
43
+ - styles
44
+ - refactor
45
+ - perf
46
+ - test
47
+ - build
48
+ - ci
49
+ - chore
50
+ - revert
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Sync lables
3
+ on :
4
+ push :
5
+ paths :
6
+ - .github/workflows/sync_labels.yml
7
+ - .github/labels.yml
8
+ jobs :
9
+ sync_labels :
10
+ name : Sync Labels
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+
15
+ env :
16
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments