-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e369a97
Showing
21 changed files
with
1,563 additions
and
0 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,53 @@ | ||
name: "Bug report" | ||
title: "[BUG]: " | ||
description: Report a problem or a bug with cisco.sdwan Ansible workflows. | ||
labels: ["bug", "needs review"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for finding the time to report a problem! | ||
We really appreciate that. | ||
- type: textarea | ||
attributes: | ||
label: Summary | ||
description: Description of the bug, what happened and what you expected to happen | ||
placeholder: > | ||
Clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Logs and external information | ||
description: > | ||
Add logs to help diagnose the issue. | ||
Remember that these can have public visibility - NEVER POST ANY SENSITIVE DATA HERE. | ||
placeholder: > | ||
TBD | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: Reproduction script | ||
description: > | ||
Please provide minimal, copy-pasted script which reproduces the issue. | ||
If reproducible script is not provided, issue may be closed. | ||
[How to create a Minimal, Reproducible Example](https://stackoverflow.com/help/mcve). | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: Issue Severity | ||
description: | | ||
How does it affect you as a user? | ||
multiple: false | ||
options: | ||
- "High: Blocking everything" | ||
- "Medium: There is a workaround" | ||
- "Low: It annoys me" | ||
validations: | ||
required: false |
Empty file.
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,29 @@ | ||
name: Feature Request | ||
title: "[FR]: " | ||
description: Suggest an idea for this project | ||
labels: ["enhancement", "needs review"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for finding the time to propose a new feature! | ||
We really appreciate that. | ||
- type: textarea | ||
attributes: | ||
label: Please describe the problem | ||
description: A clear and concise description of what the problem is. [...] | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Please describe the solution you'd like | ||
description: A clear and concise description of what you want to happen. [...] | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: Add any other context. [...] |
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,11 @@ | ||
# Pull Request summary: | ||
[Describe briefly what the PR is about] | ||
|
||
# Description of changes: | ||
[Add more in depth analysis of what changed, provide logs, examples of usage] | ||
|
||
# Checklist: | ||
|
||
- [ ] PR description is clear and comprehensive | ||
- [ ] Mentioned the issue that this PR solves (if applicable) | ||
- [ ] Make sure you test the changes |
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,15 @@ | ||
# .github/workflows/ansible-lint.yml | ||
name: Ansible Lint | ||
|
||
on: [pull_request, push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Run ansible-lint | ||
uses: ansible/ansible-lint@main # or version tag instead of 'main' |
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,10 @@ | ||
.vscode | ||
ansible.log | ||
poetry.lock | ||
run | ||
playbooks/shared/ | ||
playbooks/results/ | ||
playbooks/ansible_catalystwan.log | ||
playbooks/ansible_catalystwan_module.log | ||
playbooks/catalystwan.log | ||
playbooks/sdwan_config_dev.yml |
Oops, something went wrong.