-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dev Updates #188
Dev Updates #188
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Adds dependabot.yml control file to only update direct packages. | ||
Adds watchmedo to the celery dev container to watch Python files and restart the celery worker. | ||
Updates the example in the dev_contributing about the change fragments. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Disables alert of WebEx token missing to only if WebEx is enabled. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
allow: | ||
- dependency-type: "direct" | ||
versioning-strategy: "increase" | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
ignore: | ||
- dependency-type: "indirect" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,8 @@ services: | |
depends_on: | ||
- "postgres" | ||
- "redis" | ||
healthcheck: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was just thinking about this... I think we should do this, but it should be in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can get this moved, but brings up another question, what is the point of the It's just a question that I really don't have an answer for. |
||
disable: true | ||
<<: *nautobot-build | ||
<<: *nautobot-base | ||
worker: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nautobot-chatops" | ||
version = "1.11.0" | ||
version = "1.11.1" | ||
description = "A plugin providing chatbot capabilities for Nautobot" | ||
authors = ["Network to Code, LLC <[email protected]>"] | ||
readme = "README.md" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be in the
.github
folder?