ci: Dependabot auto-merge caller + SHA-pin ci.yml so CI runs - #33
Merged
Merged
Conversation
Thin caller of the org reusable reusable-dependabot-automerge.yml (.github), pinned by SHA. Approves + auto-merges patch Dependabot updates via the org CI App; minor, major, and non-semver bumps stay manual. Part of epic .github#23.
mnemonic's ci.yml pinned actions/checkout and actions/setup-python by tag, which the org sha_pinning_required policy rejects, so the workflow startup-failed on every run and the repo had no working CI gate. Pin both to the org-vetted SHAs so ci.yml runs and can be a required check — a prerequisite for safe Dependabot auto-merge. Refs #31
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s GitHub Actions configuration to comply with an org-wide SHA pinning policy and to enable Dependabot patch auto-merging via the organization’s reusable workflow.
Changes:
- Added a thin
pull_request_targetworkflow caller to invoke the org reusable Dependabot auto-merge workflow (patch updates only), pinned to a specific commit SHA. - SHA-pinned
actions/checkoutandactions/setup-pythonin the main CI workflow so CI no longer fails startup undersha_pinning_required.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/dependabot-automerge.yml | Adds a patch-only Dependabot auto-merge workflow caller pinned to the org reusable workflow and wired to the org App private key secret. |
| .github/workflows/ci.yml | Replaces tag-based action references with SHA-pinned actions/checkout and actions/setup-python to satisfy SHA pinning requirements. |
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.
Adds the Dependabot auto-merge caller (patch-only, pinned to the org reusable) and SHA-pins ci.yml's actions (actions/checkout, actions/setup-python) so the workflow stops startup-failing under the org sha_pinning_required policy.
Replaces #32 (its head pointer was stuck pre-fix). Part of epic .github#23, sub-issue #31.