From c515ade6c7038c622a8ae41553574ae287208b55 Mon Sep 17 00:00:00 2001 From: crab85193 Date: Wed, 15 Nov 2023 18:17:30 +0900 Subject: [PATCH 1/4] =?UTF-8?q?add:=20issue=E4=BD=9C=E6=88=90=E3=81=AE?= =?UTF-8?q?=E9=9A=9B=E3=81=AB=E4=BD=BF=E7=94=A8=E3=81=99=E3=82=8B=E3=83=86?= =?UTF-8?q?=E3=83=B3=E3=83=97=E3=83=AC=E3=83=BC=E3=83=88=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/bug_report.yml | 46 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 36 +++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..c22a449 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,46 @@ +name: Bug Report +description: バグに関するIssueのテンプレート +title: "[Bug]: " +labels: "" +assignees: "" +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 diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..d3e6c9c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,36 @@ +name: Feature Request +description: 新機能に関するIssueのテンプレート +title: "[Feature]: " +labels: "" +assigness: "" +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: 注意事項や伝達事項、メモがあれば記述して下さい + placeholder: "" + validations: + required: false \ No newline at end of file From b5978a6dcc170522ac3e1bd9177bd75e8ebbb66b Mon Sep 17 00:00:00 2001 From: crab85193 Date: Wed, 15 Nov 2023 18:24:54 +0900 Subject: [PATCH 2/4] =?UTF-8?q?add:=20pull=20request=E7=94=A8=E3=81=AE?= =?UTF-8?q?=E3=83=86=E3=83=B3=E3=83=97=E3=83=AC=E3=83=BC=E3=83=88=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ISSUE_TEMPLATE/pull_request_template.md | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/pull_request_template.md b/.github/ISSUE_TEMPLATE/pull_request_template.md new file mode 100644 index 0000000..80efde3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/pull_request_template.md @@ -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 + +//補足事項があれば記入してください \ No newline at end of file From 2af6e5832f97ad1819fa72ec17d53675a9869cc2 Mon Sep 17 00:00:00 2001 From: crab85193 Date: Wed, 15 Nov 2023 18:28:38 +0900 Subject: [PATCH 3/4] =?UTF-8?q?fix:=20=E7=A9=BA=E3=81=AE=E3=83=97=E3=83=AD?= =?UTF-8?q?=E3=83=91=E3=83=86=E3=82=A3=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 -- .github/ISSUE_TEMPLATE/feature_request.yml | 3 --- 2 files changed, 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index c22a449..d5dc246 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,8 +1,6 @@ name: Bug Report description: バグに関するIssueのテンプレート title: "[Bug]: " -labels: "" -assignees: "" body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index d3e6c9c..44228ee 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,8 +1,6 @@ name: Feature Request description: 新機能に関するIssueのテンプレート title: "[Feature]: " -labels: "" -assigness: "" body: - type: markdown attributes: @@ -31,6 +29,5 @@ body: attributes: label: その他伝達事項 description: 注意事項や伝達事項、メモがあれば記述して下さい - placeholder: "" validations: required: false \ No newline at end of file From 9d04a51c9dacf15737f3e177d49e24f468971cb4 Mon Sep 17 00:00:00 2001 From: crab85193 Date: Wed, 15 Nov 2023 18:31:45 +0900 Subject: [PATCH 4/4] =?UTF-8?q?fix:=20=E3=83=AA=E3=83=B3=E3=82=AF=E3=81=95?= =?UTF-8?q?=E3=82=8C=E3=81=9Fissue=E3=81=AE=E3=82=BF=E3=82=A4=E3=83=88?= =?UTF-8?q?=E3=83=AB=E3=81=8C=E8=A1=A8=E7=A4=BA=E3=81=95=E3=82=8C=E3=81=AA?= =?UTF-8?q?=E3=81=84=E3=83=90=E3=82=B0=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/pull_request_template.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/pull_request_template.md b/.github/ISSUE_TEMPLATE/pull_request_template.md index 80efde3..d69809c 100644 --- a/.github/ISSUE_TEMPLATE/pull_request_template.md +++ b/.github/ISSUE_TEMPLATE/pull_request_template.md @@ -4,8 +4,8 @@ //チケット番号などを記入してください -//(記入例:#3) -// なければ「チケットなし」と記入して下さい +//- #3 +//なければ「チケットなし」と記入して下さい ## What's changed