Skip to content

Commit

Permalink
initial commit in cisco-open
Browse files Browse the repository at this point in the history
  • Loading branch information
cicharka committed Mar 26, 2024
0 parents commit e369a97
Show file tree
Hide file tree
Showing 21 changed files with 1,563 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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.
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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. [...]
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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
15 changes: 15 additions & 0 deletions .github/workflows/ansible-lint.yml
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'
10 changes: 10 additions & 0 deletions .gitignore
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
Loading

0 comments on commit e369a97

Please sign in to comment.