Normalize dependabot configs and group updates by language - #186
Merged
Conversation
Every config now declares the same ecosystems, schedule, cooldown, and labels, with updates grouped into a single pull request per language. Adds configs to site-sveltekit, site-webawesome, uitk-svelte, and uitk-webawesome, which had none, so projects generated from them received no dependency updates at all. Adds the missing labels to the cpp template. Drops the jinja suffix from the site-react config, which contains no jinja. Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com>
These templates lint with oxfmt --check ., which formats YAML and is configured with singleQuote. The site-react config was previously hidden from it by a jinja suffix. Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Grouping was never configured, so Dependabot was doing what it does by
default: one pull request per dependency. This adds a
groupsblock to everyecosystem so each language lands as a single PR.
github-actions/python/javascript/or/jsrust/All thirteen configs now declare the same schedule, cooldown, labels, and key
order.
Fixes found while normalizing:
site-sveltekit,site-webawesome,uitk-svelte, anduitk-webawesomehad no Dependabot config at all, so projects generated from them received
no dependency updates whatsoever. Only
site-reacthad one.cpptemplate was missing thelabelsblocks every other Pythontemplate has, so its PRs arrived unlabelled.
site-reactconfig carried a.jinjasuffix despite containing nojinja. Renamed to match the convention used everywhere else.
Every declared directory was checked against the manifest actually tracked in
that template, so no entry points at a path with nothing to update.