-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from nautobot/next-env
Next env
- Loading branch information
Showing
104 changed files
with
5,075 additions
and
3,956 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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
--- | ||
skips: ["B308", "B703"] | ||
skips: | ||
- "B703" | ||
- "B308" | ||
# No need to check for security issues in the test scripts! | ||
exclude_dirs: | ||
- "./tests/" | ||
- "./nautobot_version_control/tests/" | ||
- "./.venv/" |
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,25 @@ | ||
{ | ||
"cookiecutter": { | ||
"codeowner_github_usernames": "@smith-ntc", | ||
"full_name": "Network to Code, LLC", | ||
"email": "[email protected]", | ||
"github_org": "nautobot", | ||
"plugin_name": "nautobot_version_control", | ||
"verbose_name": "Nautobot Version Control", | ||
"plugin_slug": "nautobot-version-control", | ||
"project_slug": "nautobot-plugin-version-control", | ||
"repo_url": "https://github.com/nautobot/nautobot-plugin-version-control", | ||
"base_url": "nautobot-version-control", | ||
"min_nautobot_version": "1.5.3", | ||
"max_nautobot_version": "1.9999", | ||
"nautobot_version": "latest", | ||
"camel_name": "NautobotVersionControl", | ||
"project_short_description": "Nautobot Version Control", | ||
"version": "0.1.0", | ||
"model_class_name": "None", | ||
"open_source_license": "Apache-2.0", | ||
"docs_base_url": "https://docs.nautobot.com", | ||
"docs_app_url": "https://docs.nautobot.com/projects/nautobot-version-control/en/latest", | ||
"_template": "../cookiecutter-ntc/nautobot-plugin" | ||
} | ||
} |
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
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,2 @@ | ||
# Default owner(s) of all files in this repository | ||
* @smith-ntc |
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,25 @@ | ||
--- | ||
name: 🐛 Bug Report | ||
about: Report a reproducible bug in the current release of nautobot-version-control | ||
--- | ||
|
||
### Environment | ||
* Python version: <!-- Example: 3.7.7 --> | ||
* Nautobot version: <!-- Example: 1.5.3 --> | ||
* nautobot-version-control version: <!-- Example: 0.1.0 --> | ||
|
||
<!-- What did you expect to happen? --> | ||
### Expected Behavior | ||
|
||
|
||
<!-- What happened instead? --> | ||
### Observed Behavior | ||
|
||
<!-- | ||
Describe in detail the exact steps that someone else can take to reproduce | ||
this bug using the current release. | ||
--> | ||
### Steps to Reproduce | ||
1. | ||
2. | ||
3. |
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,22 @@ | ||
--- | ||
name: ✨ Feature Request | ||
about: Propose a new feature or enhancement | ||
|
||
--- | ||
|
||
### Environment | ||
* Nautobot version: <!-- Example: 1.5.3 --> | ||
* nautobot-version-control version: <!-- Example: 0.1.0 --> | ||
|
||
<!-- | ||
Describe in detail the new functionality you are proposing. | ||
--> | ||
### Proposed Functionality | ||
|
||
<!-- | ||
Convey an example use case for your proposed feature. Write from the | ||
perspective of a user who would benefit from the proposed | ||
functionality and describe how. | ||
---> | ||
### Use Case | ||
|
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 @@ | ||
## New Pull Request | ||
|
||
Have you: | ||
- [ ] Updated the README if necessary? | ||
- [ ] Updated any configuration settings? | ||
- [ ] Written a unit test? | ||
|
||
## Change Notes | ||
|
||
## Justification |
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,13 @@ | ||
--- | ||
name: "Nautobot Upstream Monitor" | ||
|
||
on: # yamllint disable-line rule:truthy rule:comments | ||
schedule: | ||
- cron: "0 4 */2 * *" # every other day at midnight | ||
|
||
jobs: | ||
upstream-test: | ||
uses: "nautobot/nautobot/.github/workflows/plugin_upstream_testing_base.yml@develop" | ||
with: # Below could potentially be collapsed into a single argument if a concrete relationship between both is enforced | ||
invoke_context_name: "NAUTOBOT_VERSION_CONTROL" | ||
plugin_name: "nautobot-plugin-version-control" |
Oops, something went wrong.