-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* new file: .github/CODE_OF_CONDUCT.md modified: .github/CONTRIBUTING.md new file: .github/ISSUE_TEMPLATE/bug_report.md new file: .github/ISSUE_TEMPLATE/config.yml * modified: .github/PULL_REQUEST_TEMPLATE.md * adding a line about good practices
- Loading branch information
1 parent
6e0a022
commit 4ac6740
Showing
5 changed files
with
119 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Community Code of Conduct | ||
|
||
Please see the [Code of Conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
--- | ||
name: Bug report | ||
about: > | ||
Create a bug report. Please test against the latest release before | ||
submitting it. For anything else, please use discussions | ||
link below. | ||
labels: bug, new | ||
--- | ||
|
||
<!--- Verify first that your issue is not already reported on GitHub --> | ||
<!--- Also test if the latest release are affected --> | ||
|
||
# Summary | ||
|
||
<!--- Explain the problem briefly below --> | ||
|
||
# Issue Type | ||
|
||
- Bug Report | ||
|
||
# Ansible, Collection, Docker/Podman details | ||
|
||
<!--- Paste verbatim output between triple backticks --> | ||
|
||
```console (paste below) | ||
ansible --version | ||
|
||
ansible-galaxy collection list | ||
|
||
podman --version | ||
|
||
``` | ||
|
||
- ansible installation method: one of source, pip, OS package, EE | ||
|
||
# OS / ENVIRONMENT | ||
|
||
<!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. --> | ||
|
||
# Desired Behavior | ||
|
||
<!--- Describe what you expected to happen when running the steps above --> | ||
|
||
# Actual Behavior | ||
|
||
<!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) --> | ||
|
||
Please give some details of what is actually happening. | ||
Include a [minimum complete verifiable example] with: | ||
|
||
- playbook / task | ||
- configuration file / list | ||
- error | ||
|
||
<!--- Paste verbatim command output between triple backticks --> | ||
|
||
```console (error) | ||
|
||
``` | ||
|
||
# STEPS TO REPRODUCE | ||
|
||
<!--- Describe exactly how to reproduce the problem, using a minimal test-case --> | ||
|
||
<!--- Paste example playbooks or commands between triple backticks below --> | ||
|
||
```yaml (playbook/task) | ||
|
||
``` | ||
|
||
```yaml (config/list/array/variables) | ||
|
||
``` | ||
|
||
<!--- HINT: You can paste gist.github.com links for larger files --> | ||
|
||
[minimum complete verifiable example]: http://stackoverflow.com/help/mcve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
# Ref: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser | ||
blank_issues_enabled: false # default is true | ||
contact_links: | ||
- name: Feature requests | ||
url: https://github.com/redhat-cop/ee_utilities/discussions/categories/ideas | ||
about: Suggest an idea for this project | ||
- name: Discussions | ||
url: https://github.com/redhat-cop/ee_utilities/discussions | ||
about: Any kind of questions should go on the forum. | ||
- name: Ansible Code of Conduct | ||
url: https://docs.ansible.com/ansible/latest/community/code_of_conduct.html | ||
about: Be nice to other members of the community. Behave. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<!-- markdownlint-disable MD041 --> | ||
### What does this PR do? | ||
<!--- markdownlint-disable MD041 --> | ||
# What does this PR do? | ||
|
||
Brief explanation of the code or documentation change you've made | ||
|
||
### How should this be tested? | ||
# How should this be tested? | ||
|
||
Automated tests are preferred, but not always doable - especially for infrastructure. Include commands to run your new feature, and also post-run commands to validate that it worked. (please use code blocks to format code samples) | ||
|
||
### Is there a relevant Issue open for this? | ||
# Is there a relevant Issue open for this? | ||
|
||
Provide a link to any open issues that describe the problem you are solving. | ||
resolves #[number] | ||
|
||
### Other Relevant info, PRs, etc | ||
# Other Relevant info, PRs, etc | ||
|
||
Please provide link to other PRs that may be related (blocking, resolves, etc. etc.) |