0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GitHubのPull Request・Issueのテンプレート作る

Posted at

チーム開発時にプルリクのテンプレがあると言う存在を知り「便利だな」と思ったので自分でも使えるようになりたいと思い調べたのでその備忘録です。
※簡易版でのやり方です。公式に記事があるのでそちらもご参照ください。

必要なもの

.github フォルダー
ISSUE_TEMPLATE.md  (Issue作成のテンプレ)
PULL_REQUEST_TEMPLATE.md (PR作成のテンプレ)

.githubフォルダー内に2つ作成すればOK。

実施

フォルダーの作成とファイルの作成

mkdir .github
touch .github/PULL_REQUEST_TEMPLATE.md
touch .github/ISSUE_TEMPLATE.md

作られたファイルにテンプレにしたい内容を記載していく。

PULL_REQUEST_TEMPLATE.md
ここに記載した内容がPRの本文の内容に反映される
* issueの方も同じです。

記載したらgithubpushして反映させればOKです。

反映されていればissuePull requestの作成画面で各.mdファイルの内容が反映されています。

まとめ

自分でアプリを作る時に毎回同じ文言を書くのをどうにかできないのかと思っていたので解決策が見つかってよかったです。
公式にはテンプレを複数用意できる的な事も書いてあったので、是非公式の方もご確認ください!

参考資料

Issueとプルリクエストのテンプレートについて(GitHub公式)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?