Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kota-kakihara committed Jul 3, 2022
0 parents commit eb17467
Show file tree
Hide file tree
Showing 6 changed files with 195 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/action_item.md
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 するときは結論を明記すること
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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 するときは結論を明記すること
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## 概要
ひとことで

## Issue
- 関連する issue

## 詳細
詳しく

## 検証結果
test へのリンクや,検証結果へのリンク

## 影響範囲
XX系の動作がガラッと変わる,とか.

## 補足
何かあれば

## 注意
- 関連する Projects が存在する場合,それの紐付けを行うこと
- Assignees を設定すること
- 可能ならば Reviewers を設定すること
- 可能ならば `priority` ラベルを付けること
67 changes: 67 additions & 0 deletions .github/labels.yml
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"
17 changes: 17 additions & 0 deletions .github/workflows/actionlint.yml
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
25 changes: 25 additions & 0 deletions .github/workflows/labeler.yml
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' }}

0 comments on commit eb17467

Please sign in to comment.