mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
Added github issue and PR templates
This commit is contained in:
parent
cfbd7b35d3
commit
bb9d29b5cf
2 changed files with 33 additions and 0 deletions
14
.github/ISSUE_TEMPLATE.md
vendored
Normal file
14
.github/ISSUE_TEMPLATE.md
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
FOR FEATURES:
|
||||
|
||||
Describe the feature you want and your use case.
|
||||
|
||||
FOR BUGS:
|
||||
|
||||
Describe the problem and include the following information:
|
||||
|
||||
- Packer Version
|
||||
- Host platform
|
||||
- Debug log output from `PACKER_LOG=1 packer builde template.json`.
|
||||
Please paste this in a gist https://gist.github.com
|
||||
- The simplest example template and scripts needed to reproduce the bug.
|
||||
Include these in your gist https://gist.github.com
|
||||
19
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
19
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
Describe your change.
|
||||
|
||||
Use the following checklist to see when you're ready to merge (for docs-only changes you can skip this).
|
||||
|
||||
- [ ] For bugs, your first commit should be a test that reproduces the bug.
|
||||
This test should fail.
|
||||
- [ ] Implement the change
|
||||
- [ ] Add unit tests as appropriate
|
||||
Example: builder/virtualbox/common/ssh_config_test.go:19
|
||||
- [ ] Add an acceptance test with a template example using your feature
|
||||
Example: post-processor/compress/post-processor_test.go:153
|
||||
- [ ] Verify that tests pass
|
||||
- [ ] For features, update / add documentation under `website/`
|
||||
- [ ] Format your code with `go fmt`
|
||||
- [ ] Rebase onto master
|
||||
- [ ] If your PR resolves other open issues, indicate them below
|
||||
|
||||
Closes #xxx
|
||||
Closes #xxx
|
||||
Loading…
Reference in a new issue