ci: tag dependabot and release-please PRs with no-auto-update#124
Merged
Conversation
Label bot-generated PRs so vgv-ai-bot's Auto-update PRs feature skips them (the `no-auto-update` label is the per-PR escape hatch documented in vgv-ai-bot GETTING_STARTED.md). - dependabot: add `labels` (dependencies + no-auto-update); the `labels` key overrides dependabot defaults, so `dependencies` is listed explicitly to preserve it - release-please: add `extra-label: no-auto-update`, which appends to the default `autorelease: pending` without overriding it The `no-auto-update` repository label was also created, since Dependabot only applies custom labels that already exist. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
omartinma
approved these changes
Jul 7, 2026
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.
Description
Configures the repository so every Dependabot and release-please PR is labeled
no-auto-update. Per vgv-ai-bot GETTING_STARTED.md, that label is the per-PR escape hatch for the bot's Auto-update PRs feature. Labeled PRs are skipped when the base branch moves, so bot-generated PRs won't be churned by auto-update.Changes
.github/dependabot.yaml— addlabels: [dependencies, no-auto-update]. Dependabot'slabelskey overrides its defaults, sodependenciesis listed explicitly to preserve it. (github_actionsintentionally omitted — Dependabot only auto-adds the ecosystem label when multiple ecosystems are configured; with a single ecosystem it's redundant.).release-please-config.json— add"extra-label": "no-auto-update". Unlikelabel,extra-labelappends to the defaultautorelease: pendingrather than overriding it, so release-please's own bookkeeping label is preserved.no-auto-updatelabel (Dependabot only applies custom labels that already exist; it does not create them).Reviewer notes
extra-labelis a release-please schema key (comma-separated string);labelsis not in the release-please schema and would be silently ignored.Type of Change