Skip to content
This repository was archived by the owner on May 20, 2024. It is now read-only.

Commit 65874eb

Browse files
config labels
1 parent 60448df commit 65874eb

File tree

3 files changed

+83
-0
lines changed

3 files changed

+83
-0
lines changed

.github/labels.json

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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+
]

.github/workflows/label-sync.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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

cspell.json

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"ignoreWords": [
3+
"wontfix",
4+
"lannonbr",
35
"labstack",
46
"gopls",
57
"golangci",

0 commit comments

Comments
 (0)