Skip to content

Commit b48a075

Browse files
feat: se-team-hubのreusable workflowsを移設し、repository-templateからリポジトリ構成を導入
Reusable workflows: - auto-assign-pr-creator.yml - auto-label-subsystem.yml - auto-label-tag.yml - set-iteration-on-close.yml - update-tracking-status.yml - update-renovate-tracking.yml Caller workflows for this repo: - assign-pr-creator.yaml - close-set-iteration.yaml - auto-label-subsystem.yaml Repository configuration from repository-template: - CI, labels, renovate, pre-commit, linting configs - CODEOWNERS: @shunsuke-shimomura
0 parents  commit b48a075

29 files changed

Lines changed: 2166 additions & 0 deletions

.cz.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tool.commitizen]
2+
name = "cz_conventional_commits"

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/.markdownlint-cli2.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
config:
3+
# Issue and pull request templates do not start with an H1 by convention.
4+
MD041: false

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @shunsuke-shimomura
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Action Item
3+
about: Create an action item
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## Description
11+
12+
<!-- _Provide a detailed description of the issue._ -->
13+
14+
## Closing conditions
15+
16+
<!-- _Provide the conditions that must be met for the issue to be closed._ -->
17+
18+
## Supplementary information
19+
20+
<!-- _Provide any supplementary information._ -->
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ['bug :bug:']
6+
assignees: ''
7+
8+
---
9+
10+
## Description
11+
12+
<!-- _Describe the bug in detail._ -->
13+
14+
## Conditions of occurrence
15+
16+
<!-- _Describe the environment, conditions, parameters, etc. under which the bug occurred._ -->
17+
18+
## Closing conditions
19+
20+
<!-- _Provide the conditions that must be met for the issue to be closed._ -->
21+
22+
## Supplementary information
23+
24+
<!-- _Provide any supplementary information._ -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Description
2+
3+
<!-- _Provide a detailed description of this pull request._ -->
4+
5+
## Test results
6+
7+
<!-- _Provide the test results and a link to the detailed results log._ -->
8+
9+
## Impact
10+
11+
<!-- _Describe the scope of influence of the changes, e.g., `The behavior of feature ** changes.`_ -->
12+
13+
## Supplementary information
14+
15+
<!-- _Provide any supplementary information._ -->

.github/labels/labeler.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
"ci :gear:":
3+
- changed-files:
4+
- any-glob-to-any-file: [".github/workflows/**"]
5+
6+
"pre-commit :hook:":
7+
- changed-files:
8+
- any-glob-to-any-file: [".pre-commit-config.yaml"]
9+
10+
"documentation :notebook:":
11+
- changed-files:
12+
- any-glob-to-any-file: "**/*.md"

.github/labels/labels.yaml

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
---
2+
- name: "bug :bug:"
3+
color: "F9D0C4"
4+
description: "Something isn't working"
5+
6+
- name: "documentation :notebook:"
7+
color: "F0F0F0"
8+
description: "Improvements or additions to documentation"
9+
10+
- name: "enhancement :sparkles:"
11+
description: "New feature or request"
12+
color: "F0F0F0"
13+
14+
- name: "good first issue :beginner:"
15+
description: "Good for newcomers"
16+
color: "F0F0F0"
17+
18+
- name: "question :question:"
19+
description: "Further information is requested"
20+
color: "F0F0F0"
21+
22+
- name: "icebox :ice_cube:"
23+
description: "icebox or pending"
24+
color: "F0F0F0"
25+
26+
- name: "priority::high :rocket:"
27+
description: "priority high"
28+
color: "F9D0C4"
29+
30+
- name: "priority::low :car:"
31+
description: "priority low"
32+
color: "C2E0C6"
33+
34+
- name: "priority::medium :airplane:"
35+
description: "priority medium"
36+
color: "FEF2C0"
37+
38+
- name: "update::major :whale:"
39+
color: "F9D0C4"
40+
description: "Major update"
41+
42+
- name: "update::minor :dolphin:"
43+
color: "FEF2C0"
44+
description: "Minor update"
45+
46+
- name: "update::patch :fish:"
47+
color: "C2E0C6"
48+
description: "Patch update"
49+
50+
- name: "ci :gear:"
51+
description: "Changes to CI workflows"
52+
color: "FFD580"
53+
54+
- name: "pre-commit :hook:"
55+
description: "Changes to pre-commit hooks"
56+
color: "FFD580"
57+
58+
- name: "automated :robot:"
59+
description: "Automated issue or pull request"
60+
color: "D6D6D6"
61+
62+
- name: "dependencies :package:"
63+
description: "Update dependencies"
64+
color: "D6D6D6"
65+
66+
- name: "versioning :bookmark:"
67+
description: "Versioning changes"
68+
color: "D6D6D6"
69+
70+
# 系ラベル(不要なものはリポジトリごとに削除してください)
71+
- name: "sys::構造"
72+
description: "構造系"
73+
color: "D4C5F9"
74+
75+
- name: "sys::熱"
76+
description: "熱系"
77+
color: "D4C5F9"
78+
79+
- name: "sys::電源"
80+
description: "電源系"
81+
color: "D4C5F9"
82+
83+
- name: "sys::通信"
84+
description: "通信系"
85+
color: "D4C5F9"
86+
87+
- name: "sys::CDH"
88+
description: "CDH系(コマンド・データ処理)"
89+
color: "D4C5F9"
90+
91+
- name: "sys::姿勢"
92+
description: "姿勢制御系"
93+
color: "D4C5F9"
94+
95+
- name: "sys::軌道"
96+
description: "軌道系"
97+
color: "D4C5F9"
98+
99+
- name: "sys::推進"
100+
description: "推進系"
101+
color: "D4C5F9"
102+
103+
- name: "sys::地上"
104+
description: "地上系"
105+
color: "D4C5F9"
106+
107+
- name: "sys::PL"
108+
description: "ペイロード・ミッション機器"
109+
color: "D4C5F9"
110+
111+
- name: "sys::電装"
112+
description: "電装系"
113+
color: "D4C5F9"
114+
115+
- name: "sys::システム"
116+
description: "システム系"
117+
color: "D4C5F9"
118+
119+
- name: "sys::SE"
120+
description: "システムズエンジニアリング"
121+
color: "D4C5F9"
122+
123+
- name: "sys::SW"
124+
description: "ソフトウェア"
125+
color: "D4C5F9"
126+
127+
# TAGラベル(不要なものはリポジトリごとに削除してください)
128+
- name: "tag::formal-methods"
129+
description: "Formal Methods TAG"
130+
color: "FF7A00"
131+
132+
- name: "tag::autonomy"
133+
description: "Autonomy TAG"
134+
color: "00B8FF"
135+
136+
- name: "tag::inference"
137+
description: "Inference TAG"
138+
color: "7A5CFF"

0 commit comments

Comments
 (0)