From 25eeaac03f1f0e0e1c460e1d0d88b23f76c17044 Mon Sep 17 00:00:00 2001 From: James Falcon Date: Tue, 29 Sep 2020 10:28:42 -0500 Subject: Adding a PR template (#587) --- .github/PULL_REQUEST_TEMPLATE.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md (limited to '.github') diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..82a0fadf --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,18 @@ +## Proposed Commit Message + + +## Additional Context + + +## Test Steps + + +## Checklist: + + - [] My code follows the process laid out in [the documentation](https://cloudinit.readthedocs.io/en/latest/topics/hacking.html) + - [] I have updated or added any unit tests accordingly + - [] I have updated or added any documentation accordingly \ No newline at end of file -- cgit v1.2.3 From 63313335eccb45df0d8eb43d8ed93d994b946ad2 Mon Sep 17 00:00:00 2001 From: Daniel Watkins Date: Mon, 5 Oct 2020 11:40:40 -0400 Subject: PULL_REQUEST_TEMPLATE.md: empty checkboxes need a space (#597) --- .github/PULL_REQUEST_TEMPLATE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 82a0fadf..37f55d26 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -13,6 +13,6 @@ setup, and teardown. Scripts used may be attached directly to this PR. --> ## Checklist: - - [] My code follows the process laid out in [the documentation](https://cloudinit.readthedocs.io/en/latest/topics/hacking.html) - - [] I have updated or added any unit tests accordingly - - [] I have updated or added any documentation accordingly \ No newline at end of file + - [ ] My code follows the process laid out in [the documentation](https://cloudinit.readthedocs.io/en/latest/topics/hacking.html) + - [ ] I have updated or added any unit tests accordingly + - [ ] I have updated or added any documentation accordingly -- cgit v1.2.3 From 0ff34cfb94b3c480b6a697e4ad1878fa893a3a39 Mon Sep 17 00:00:00 2001 From: James Falcon Date: Mon, 2 Nov 2020 11:39:00 -0600 Subject: Remove Ubuntu restriction from PR template (#648) --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 37f55d26..4314b9da 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -6,7 +6,7 @@ ## Test Steps -- cgit v1.2.3 From d1c01c1df94e07afd3843e31b1e1ce670cf07387 Mon Sep 17 00:00:00 2001 From: Daniel Watkins Date: Wed, 4 Nov 2020 08:31:10 -0500 Subject: PULL_REQUEST_TEMPLATE.md: expand commit message section (#642) Make it a little easier for people to understand what we're looking for in a commit message. --- .github/PULL_REQUEST_TEMPLATE.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to '.github') diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 4314b9da..2b59d10a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,18 @@ ## Proposed Commit Message +> summary: no more than 70 characters +> +> A description of what the change being made is and why it is being +> made, if the summary line is insufficient. The blank line above is +> required. This should be wrapped at 72 characters, but otherwise has +> no particular length requirements. +> +> If you need to write multiple paragraphs, feel free. +> +> LP: #NNNNNNN (replace with the appropriate bug reference or remove +> this line entirely if there is no associated bug) + ## Additional Context -- cgit v1.2.3