ci: keep dependabot-reqs in sync with main#77
Merged
Grol-DBT merged 1 commit intoMay 24, 2026
Merged
Conversation
Merge main into dependabot-reqs on every push to main (and on demand) so Dependabot's weekly updates are computed against the latest manifests. Uses merge rather than rebase/force-push because dependabot-reqs is the base of open Dependabot PRs and its tip must only advance. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.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.
What
Adds a GitHub Actions workflow (
.github/workflows/sync-dependabot-reqs.yml) that mergesmainintodependabot-reqson every push tomain(plus manualworkflow_dispatch).Why
Dependabot computes its weekly updates against the manifests on its target branch (
dependabot-reqs, configured in #76). If that branch drifts behindmain, Dependabot evaluates stalepackage.json/ lockfile. This keeps it current automatically.Design notes
dependabot-reqsis the base of open Dependabot PRs, so its tip must only advance — a force-push would churn those PRs and is blocked by branch protection.dependabot-reqsalready containsmain(no empty commits).contents: write, single-concurrency.Depends on
target-branch: dependabot-reqs) and the existingdependabot-reqsbranch.dependabot-reqslater gets branch protection, thegithub-actions[bot]push needs an allowance (or a PAT).🤖 Generated with Claude Code