generated from ut-issl/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit eb17467
Showing
6 changed files
with
195 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
name: Action Item | ||
about: AI 管理用テンプレート | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 概要 | ||
ひとことで | ||
|
||
## 詳細 | ||
詳しく | ||
|
||
## close条件 | ||
どうなったらcloseできるか | ||
|
||
## 備考 | ||
なにかあれば | ||
|
||
## 注意 | ||
- 関連する Projects が存在する場合,それの紐付けを行うこと | ||
- 可能ならば `priority` ラベルを付けること | ||
- 可能ならば Assignees を設定すること | ||
- close するときは結論を明記すること |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 概要 | ||
ひとことで | ||
|
||
## 詳細 | ||
### 詳細症状 | ||
どういうバグか | ||
|
||
### 発生条件 | ||
発生した環境,症状,パラメタなど | ||
|
||
### 追加資料 | ||
あればリンクなどを貼る | ||
|
||
## 必要な作業 | ||
- [ ] あれして | ||
- [ ] これする | ||
|
||
## 影響範囲 | ||
tool類が全部死ぬ... みたいな | ||
|
||
## 補足 | ||
何かれば | ||
|
||
## 注意 | ||
- 関連する Projects が存在する場合,それの紐付けを行うこと | ||
- 可能ならば `priority` ラベルを付けること | ||
- 可能ならば Assignees を設定すること | ||
- close するときは結論を明記すること |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## 概要 | ||
ひとことで | ||
|
||
## Issue | ||
- 関連する issue | ||
|
||
## 詳細 | ||
詳しく | ||
|
||
## 検証結果 | ||
test へのリンクや,検証結果へのリンク | ||
|
||
## 影響範囲 | ||
XX系の動作がガラッと変わる,とか. | ||
|
||
## 補足 | ||
何かあれば | ||
|
||
## 注意 | ||
- 関連する Projects が存在する場合,それの紐付けを行うこと | ||
- Assignees を設定すること | ||
- 可能ならば Reviewers を設定すること | ||
- 可能ならば `priority` ラベルを付けること |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
- name: "bug" | ||
color: "d73a4a" | ||
description: "Something isn't working" | ||
|
||
- name: "documentation" | ||
color: "0075ca" | ||
description: "Improvements or additions to documentation" | ||
|
||
- name: "duplicate" | ||
color: "cfd8d7" | ||
description: "This issue or pull request already exists" | ||
|
||
- name: "enhancement" | ||
description: "New feature or request" | ||
color: "a2eeef" | ||
|
||
- name: "good first issue" | ||
description: "Good for newcomers" | ||
color: "7057ff" | ||
|
||
- name: "help wanted" | ||
description: "Extra attention is needed" | ||
color: "008672" | ||
|
||
- name: "invalid" | ||
description: "This doesn't seem right" | ||
color: "e4e669" | ||
|
||
- name: "question" | ||
description: "Further information is requested" | ||
color: "d876e3" | ||
|
||
- name: "wontfix" | ||
description: "This will not be worked on" | ||
color: "ffffff" | ||
|
||
- name: "icebox" | ||
description: "icebox or pending" | ||
color: "c5def5" | ||
|
||
- name: "priority::high" | ||
description: "priorityg high" | ||
color: "d93f0b" | ||
|
||
- name: "priority::low" | ||
description: "priority low" | ||
color: "9dcce0" | ||
|
||
- name: "priority::medium" | ||
description: "priority medium" | ||
color: "fbca04" | ||
|
||
- name: "tools" | ||
description: "" | ||
color: "510f70" | ||
|
||
- name: "C2A" | ||
description: "" | ||
color: "2a9637" | ||
|
||
- name: "S2E" | ||
description: "" | ||
color: "eef789" | ||
|
||
- name: "WINGS" | ||
description: "" | ||
color: "1503bb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: reviewdog / actionlint | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/**' | ||
|
||
jobs: | ||
actionlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: reviewdog/action-actionlint@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: github-pr-review | ||
fail_on_error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: labeler | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
paths: | ||
- .github/workflows/labeler.yml | ||
- .github/labels.yml | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Run Labeler | ||
uses: crazy-max/ghaction-github-labeler@v3 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
yaml-file: .github/labels.yml | ||
skip-delete: false | ||
dry-run: ${{ github.ref != 'refs/heads/main' }} |