ci(github): use app token for dependabot merges#16
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ae6642963d
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| app-id: ${{ secrets.DEPENDABOT_AUTOMERGE_APP_ID }} | ||
| private-key: ${{ secrets.DEPENDABOT_AUTOMERGE_PRIVATE_KEY }} |
There was a problem hiding this comment.
Move app-token secrets out of this Dependabot event
This job only runs for dependabot[bot] PRs under pull_request_target, and GitHub's secret restrictions say that in this case workflow secrets are not available, aside from the read-only GITHUB_TOKEN. Because the new app-token step gets both required inputs from secrets.*, every patch/minor Dependabot PR will pass empty app credentials into actions/create-github-app-token and fail before the approve/merge steps; the app-token creation needs to run from a non-Dependabot-triggered handoff such as workflow_run/dispatch, or use credentials available in this event.
Useful? React with 👍 / 👎.
Summary
Updates the Dependabot auto-merge workflow to use the LayeredCraft GitHub App token for approving and enabling auto-merge. This avoids using
GITHUB_TOKENfor the merge operation so downstream workflows can run after Dependabot auto-merged changes land onmain.Changes
actions/create-github-app-tokenstep for semver patch/minor Dependabot PRs.GH_TOKENforgh pr review --approveandgh pr merge --auto --squash.dependabot/fetch-metadataon the defaultGITHUB_TOKEN.Validation
Notes for Reviewers
Requires the Actions secrets
DEPENDABOT_AUTOMERGE_APP_IDandDEPENDABOT_AUTOMERGE_PRIVATE_KEYto be available to this repository.