Skip to content

Commit 277f4c4

Browse files
authored
Ignore sphinx minor versions for dependabot (#41)
## Why is this change necessary? dependabot was updating sphinx ## How does this change address the issue? stops it ## What side effects does this change have? N/A ## How is this change tested? isn't
1 parent 0336307 commit 277f4c4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

template/.github/dependabot.yml.jinja

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ updates:
1212
- dependency-name: "boto3" # boto3 gets patch updates way too frequently and they're usually not important
1313
update-types:
1414
- "version-update:semver-patch"
15+
- dependency-name: "sphinx*" # read-the-docs uses specific versions of sphinx, so we generally want to stay tightly pinned unless there's a major version change
16+
update-types:
17+
- "version-update:semver-minor"
18+
- "version-update:semver-patch"
1519

1620
groups:
1721
prod-dependencies:

0 commit comments

Comments
 (0)