diff options
author | Dag Wieers <dag@wieers.com> | 2016-03-10 13:55:49 +0100 |
---|---|---|
committer | Dag Wieers <dag@wieers.com> | 2016-03-10 13:55:49 +0100 |
commit | 1afa369eecb43024eb98555e253b8c4064ee9a70 (patch) | |
tree | c633c0f8a78f7b857bb6600231dc08dabedfd2cf /.github/ISSUE_TEMPLATE.md | |
parent | 4e528e9535732b7541155b323cdab2377d74cc3a (diff) | |
download | ansible-1afa369eecb43024eb98555e253b8c4064ee9a70.tar.gz |
Move the Github issue and pull-request templates to .github
In essence, most people do not need to use the templates directly,
getting them out of the way increases the signal-to-noise ratio of
the root directory. Direct people to what they are looking for.
Diffstat (limited to '.github/ISSUE_TEMPLATE.md')
-rw-r--r-- | .github/ISSUE_TEMPLATE.md | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000000..56907da419 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,55 @@ +##### Issue Type: + +<!--- Please pick one and delete the rest: --> + - Bug Report + - Feature Idea + - Documentation Report + +##### Ansible Version: + +``` +<!--- Paste verbatim output from “ansible --version” here --> +``` + +##### Ansible Configuration: + +<!--- +Please mention any settings you have changed/added/removed in ansible.cfg +(or using the ANSIBLE_* environment variables). +--> + +##### Environment: + +<!--- +Please mention the OS you are running Ansible from, and the OS you are +managing, or say “N/A” for anything that is not platform-specific. +--> + +##### Summary: + +<!--- Please explain the problem briefly --> + +##### Steps To Reproduce: + +<!--- +For bugs, please show exactly how to reproduce the problem. For new +features, show how the feature would be used. +--> + +``` +<!--- Paste example playbooks or commands here --> +``` + +<!--- You can also paste gist.github.com links for larger files --> + +##### Expected Results: + +<!--- What did you expect to happen when running the steps above? --> + +##### Actual Results: + +<!--- What actually happened? If possible run with high verbosity (-vvvv) --> + +``` +<!--- Paste verbatim command output here --> +``` |