This repository has been archived by the owner on Jan 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from crab85193/dev_crab
Issue と Pull Requestのテンプレートを実装
- Loading branch information
Showing
3 changed files
with
112 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,44 @@ | ||
name: Bug Report | ||
description: バグに関するIssueのテンプレート | ||
title: "[Bug]: " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: どのような問題が発生しましたか? | ||
placeholder: 問題が発生した時の情報を記述して下さい。 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: どこで問題が発生しましたか? | ||
options: | ||
- 本番環境 | ||
- 開発環境 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: 問題が発生した際に使用していたブラウザ | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: 関連するログの出力 | ||
description: 関連するログ出力をコピー&ペーストしてください。これは自動的にコードにフォーマットされますので、バックティックは必要ありません。 | ||
render: shell |
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,33 @@ | ||
name: Feature Request | ||
description: 新機能に関するIssueのテンプレート | ||
title: "[Feature]: " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for suggesting the new feature! | ||
- type: textarea | ||
id: purpose | ||
attributes: | ||
label: 目的 | ||
description: 新機能を実装する目的、実装することでユーザーに提供できる価値について記述して下さい | ||
placeholder: ご記入ください | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: tasks | ||
attributes: | ||
label: やること | ||
description: 新機能を実装する上で取り組みことを記述して下さい | ||
placeholder: | | ||
* 〇〇を実装する | ||
* 〇〇を作成する | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: notes | ||
attributes: | ||
label: その他伝達事項 | ||
description: 注意事項や伝達事項、メモがあれば記述して下さい | ||
validations: | ||
required: false |
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,35 @@ | ||
// pull request発行の際は '//'が書かれている行を削除して下さい | ||
|
||
## Ticket / Issue Number | ||
|
||
//チケット番号などを記入してください | ||
|
||
//- #3 | ||
//なければ「チケットなし」と記入して下さい | ||
|
||
## What's changed | ||
|
||
//このプルリクは何をしたのかを記入してください。画像とテキストを使って説明するのがおすすめです。 | ||
|
||
//* ホームページのUIを調整しました | ||
//* Primary Colorを`#0969DA`へ変更しました(@ianchen0419 確認お願いします) | ||
//* Bugを修復しました :+1: | ||
//* デプロイしました([デプロイ先](https://pages.github.com/)) | ||
|
||
## Todo List | ||
|
||
//今回のプルリクはまだやっていないことや、将来やる予定の事項を記入してください | ||
|
||
//- [x] デザイナーに確認してもらいます | ||
//- [ ] iOS 16のデバイスにテストします | ||
//- [ ] テストケースを書きます | ||
|
||
## Check List | ||
|
||
- [ ] エラーや警告は出ませんでした | ||
- [ ] `docker-compose -f docker-compose.dev.yml up -d`を使ってコンテナの起動を確認しました | ||
- [ ] 開発環境で`localhost:8000`にアクセスしてサイトの動作確認を行いました | ||
|
||
## Remark | ||
|
||
//補足事項があれば記入してください |