Skip to content
This repository has been archived by the owner on Jan 19, 2025. It is now read-only.

Commit

Permalink
Merge pull request #59 from crab85193/dev_crab
Browse files Browse the repository at this point in the history
Issue と Pull Requestのテンプレートを実装
  • Loading branch information
crab85193 authored Nov 16, 2023
2 parents b83234c + 9d04a51 commit d0ee858
Showing 3 changed files with 112 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/pull_request_template.md
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

//補足事項があれば記入してください

0 comments on commit d0ee858

Please sign in to comment.