Skip to content

Commit

Permalink
Move rebase-strategy into each updates element (#5176)
Browse files Browse the repository at this point in the history
* Move rebase-strategy into each updates element

* Validate the Dependabot config during CI linting
  • Loading branch information
adamnovak authored Dec 5, 2024
1 parent 588492a commit 8e0d84a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Dependabot configuration file
# Validate with: check-jsonschema --schemafile https://json.schemastore.org/dependabot-2.0.json .github/dependabot.yml
version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
Expand All @@ -11,11 +13,11 @@ updates:
- dependency-name: "apache-libcloud"
- dependency-name: "google-cloud-storage"
- dependency-name: "google-auth"
rebase-strategy: disabled
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
# Don't constantly rebase all the dependency bump PRs whenever anything else
# merges; this causes too many CI runs.
rebase-strategy: ignore
rebase-strategy: disabled


1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ lint:
- ${MAIN_PYTHON_PKG} --version
- make mypy
- make docs
- check-jsonschema --schemafile https://json.schemastore.org/dependabot-2.0.json .github/dependabot.yml
# - make diff_pydocstyle_report

cwl_dependency_is_stand_alone:
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ docutils>=0.16,<0.22
pyupgrade
pytest-xdist
build
check-jsonschema

0 comments on commit 8e0d84a

Please sign in to comment.