Skip to content

Commit

Permalink
Merge pull request #251 from nautobot/drift-manager/pr
Browse files Browse the repository at this point in the history
Cookie initialy baked by NetworkToCode Cookie Drift Manager Tool
  • Loading branch information
Kircheneer authored Oct 24, 2023
2 parents 9ac1372 + c63e808 commit db0b376
Show file tree
Hide file tree
Showing 40 changed files with 750 additions and 477 deletions.
58 changes: 34 additions & 24 deletions .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,35 @@
{
"cookiecutter": {
"codeowner_github_usernames": "@glennmatthews @jathanism @lampwins @chadell",
"full_name": "Network to Code, LLC",
"email": "[email protected]",
"github_org": "nautobot",
"plugin_name": "nautobot_ssot",
"verbose_name": "Nautobot Ssot",
"plugin_slug": "nautobot-ssot",
"project_slug": "nautobot-plugin-ssot",
"repo_url": "https://github.com/nautobot/nautobot-plugin-ssot",
"base_url": "ssot",
"min_nautobot_version": "1.4.0",
"max_nautobot_version": "1.9999",
"nautobot_version": "1.5.1",
"camel_name": "NautobotSsot",
"project_short_description": "Nautobot Single Source of Truth",
"version": "1.2.0",
"model_class_name": "Sync",
"open_source_license": "Apache-2.0",
"docs_base_url": "https://docs.nautobot.com",
"docs_app_url": "https://docs.nautobot.com/projects/nautobot-ssot/en/latest",
"_template": "../cookiecutter-ntc/nautobot-plugin"
}
}
"cookiecutter": {
"codeowner_github_usernames": "@smith-ntc",
"full_name": "Network to Code, LLC",
"email": "[email protected]",
"github_org": "nautobot",
"plugin_name": "nautobot_ssot",
"verbose_name": "Single Source of Truth",
"plugin_slug": "nautobot-ssot",
"project_slug": "nautobot-plugin-ssot",
"repo_url": "https://github.com/nautobot/nautobot-plugin-ssot/",
"base_url": "ssot",
"min_nautobot_version": "2.0.0",
"max_nautobot_version": "2.9999",
"camel_name": "NautobotSSOTPlugin",
"project_short_description": "Nautobot Single Source of Truth",
"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/ssot/en/latest",
"_drift_manager": {
"template": "https://github.com/nautobot/cookiecutter-nautobot-app.git",
"template_dir": "nautobot-app",
"template_ref": "develop",
"cookie_dir": "",
"branch_prefix": "drift-manager",
"pull_request_strategy": "create",
"post_actions": [
"black"
],
"draft": true,
"baked_commit_ref": "802b921a43ac6c3a5bfe059c4feccc8eef629fed"
}
}
}
16 changes: 10 additions & 6 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[flake8]
# E501: Line length is enforced by Black, so flake8 doesn't need to check it
# W503: Black disagrees with this rule, as does PEP 8; Black wins
ignore = E501, W503
exclude =
.venv
nautobot_ssot/integrations/servicenow/third_party
ignore =
E501, # Line length is enforced by Black, so flake8 doesn't need to check it
W503 # Black disagrees with this rule, as does PEP 8; Black wins
exclude =
migrations,
__pycache__,
manage.py,
settings.py,
.venv
nautobot_ssot/integrations/servicenow/third_party
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ about: Report a reproducible bug in the current release of nautobot-ssot
---

### Environment
* Python version: <!-- Example: 3.7.7 -->
* Nautobot version: <!-- Example: 1.0.3 -->
* Python version: <!-- Example: 3.11.4 -->
* Nautobot version: <!-- Example: 2.0.0 -->
* nautobot-ssot version: <!-- Example: 1.0.0 -->

<!-- What did you expect to happen? -->
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ about: Propose a new feature or enhancement
---

### Environment
* Nautobot version: <!-- Example: 1.0.3 -->
* Nautobot version: <!-- Example: 2.0.0 -->
* nautobot-ssot version: <!-- Example: 1.0.0 -->

<!--
Expand All @@ -17,6 +17,6 @@ about: Propose a new feature or enhancement
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

39 changes: 32 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,35 @@
## New Pull Request
<!--
Thank you for your interest in contributing to Nautobot! Please note
that our contribution policy recommends that a feature request or bug
report be opened for approval prior to filing a pull request. This
helps avoid wasting time and effort on something that we might not
be able to accept.
Have you:
- [ ] Updated the README if necessary?
- [ ] Updated any configuration settings?
- [ ] Written a unit test?
Please indicate the relevant feature request or bug report below.
-->

## Change Notes
# Closes: #<ISSUE NUMBER GOES HERE>

## Justification
## What's Changed

<!--
Please include:
- A summary of the proposed changes
- A sectioned breakdown for larger features under ## subheadings
- Screenshots, example payloads where relevant:
- Before/After for bugfixes
- Using a new feature
-->

## To Do

<!--
Please feel free to update todos to keep track of your own notes for WIP PRs.
-->
- [ ] Explanation of Change(s)
- [ ] Added change log fragment(s) (for more information see [the documentation](https://docs.nautobot.com/projects/core/en/stable/development/#creating-changelog-fragments))
- [ ] Attached Screenshots, Payload Example
- [ ] Unit, Integration Tests
- [ ] Documentation Updates (when adding/changing features)
- [ ] Example Plugin Updates (when adding/changing features)
- [ ] Outline Remaining Work, Constraints from Design
Loading

0 comments on commit db0b376

Please sign in to comment.