Skip to content

Commit

Permalink
dependabot: fix ignoring substrate deps (#1588)
Browse files Browse the repository at this point in the history
* dependabot: explicitly ignore substrate deps

* Indentation

* Revert to wildcards, move to cargo package

* Comments

* Fix update-types

* Formatting
  • Loading branch information
ascjones authored and HCastano committed Jan 23, 2023
1 parent f3340ee commit fc20ed2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ updates:
directory: "/"
schedule:
interval: "daily"
# ignore Substrate pallets major updates.
# automated Substrate releases cause dependabot PR spam, so these must be updated manually when required.
ignore:
- dependency-name: "sp-*"
update-types: [ "version-update:semver-major" ]
- dependency-name: "pallet-*"
update-types: [ "version-update:semver-major" ]
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: daily
- ignore:
- dependency-name: sp-*
versions:
- ">= 0"
- dependency-name: pallet-*
versions:
- ">= 0"

0 comments on commit fc20ed2

Please sign in to comment.