This repository was archived by the owner on Feb 9, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +68
-1
lines changed
Expand file tree Collapse file tree 4 files changed +68
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Lint GitHub Actions workflows
2+ on : push
3+
4+ jobs :
5+ actionlint :
6+ runs-on : ubuntu-latest
7+ timeout-minutes : 1
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.ref }}
10+ cancel-in-progress : true
11+ steps :
12+ - uses : actions/checkout@v4
13+ - name : Download actionlint
14+ id : get_actionlint
15+ run : bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
16+ shell : bash
17+ - name : Check workflow files
18+ run : ${{ steps.get_actionlint.outputs.executable }} -color
19+ shell : bash
Original file line number Diff line number Diff line change 1+ # Git・GitHub関連の開発規則
2+
3+ ## ブランチの命名規則
4+
5+ > 未定。決まり次第書きます
6+
7+ ## コミット・コミットメッセージの書き方
8+
9+ - コミットメッセージの書き方に具体的なルールは設けませんが、** 最低限どのような変更を加えたのかを明記してください**
10+ - バグを特定する際などに過去のバージョンを参照することがあります。まとめてコミットすると特定の状態に戻りにくくなるので、** こまめにコミットしておくことを推奨します**
11+
12+ ## Pull Requestの作成
13+
14+ - ` main ` ブランチに直接Pushすることは、緊急時を除き禁止です
15+ - 開発したものを` main ` ブランチに反映させるときは、必ずPull Requestを作成してからマージしてください
16+ - 詳しくは次の項目を参照してください
17+
18+ ## ` main ` ブランチにマージされるまで
19+
20+ - まずはローカルで正しく動くことを確認してください
21+ - 既知のバグを含んだ状態で` main ` ブランチにマージすることは避けてください
22+ - ** 必ず必須のチェックが通ってから` main ` ブランチにマージしてください**
Original file line number Diff line number Diff line change 1- # project-experiment
1+ # プロジェクト実験
2+
23学部3年後期、プロジェクト実験
4+
5+ ## 開発規則
6+
7+ ### Git・GitHub関連
8+
9+ > ブランチの命名規則、コミットメッセージの書き方、Pull Requestからmainブランチへマージされるまでの流れなど
10+
11+ [ ` CONTRIBUTING.md ` ] ( /CONTRIBUTING.md ) を参照してください
12+
13+ ### コーディング規則
14+
15+ > 関数名や変数名、処理の書き方など
16+
17+ > → 開発で用いる言語やツールが決まってから記載します
18+
19+ ## ディレクトリ説明
20+
21+ - ` docs ` : コーディング規則などを記載する予定です
22+
23+ ## 環境構築方法
24+
25+ > プロジェクトの詳細が決まってから記載します
Original file line number Diff line number Diff line change 1+ # ` /docs ` : ドキュメントディレクトリ
2+
3+ > コーディング規則やトラブルシューティングなど、開発に直接関係する情報
You can’t perform that action at this time.
0 commit comments