Migrate deprecated app-id to client-id for GitHub App token#159
Merged
Conversation
actions/create-github-app-token deprecated the numeric app-id input in v3.0.0; the scheduled and codegen runs emit 'Input app-id has been deprecated'. Switch all four call sites (3 in merge-bot-pull-request.yml, 1 in run-codegen-pull-request-task.yml) to client-id. The CODEGEN_APP_CLIENT_ID secret already holds the App Client ID, so no secrets change is needed.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the GitHub Actions workflows to address the actions/create-github-app-token v3.x deprecation warning by switching from the deprecated app-id input to the supported client-id input, keeping the existing secret wiring unchanged.
Changes:
- Replaced
with: app-id: ...withwith: client-id: ...in all fouractions/create-github-app-tokencall sites. - Kept the existing
CODEGEN_APP_CLIENT_ID/CODEGEN_APP_PRIVATE_KEYsecret usage intact (parameter rename only).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/run-codegen-pull-request-task.yml | Updates the GitHub App token generation step to use client-id instead of deprecated app-id. |
| .github/workflows/merge-bot-pull-request.yml | Updates all three jobs’ GitHub App token generation steps to use client-id instead of deprecated app-id. |
This was referenced Jun 15, 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.
actions/create-github-app-tokendeprecated the numericapp-idinput in v3.0.0, and the scheduled/codegen runs logInput 'app-id' has been deprecated. This switches all four call sites toclient-id:.github/workflows/merge-bot-pull-request.yml- 3 jobs (merge-dependabot, merge-codegen, disable-auto-merge-on-maintainer-push).github/workflows/run-codegen-pull-request-task.yml- 1 job (codegen)The
CODEGEN_APP_CLIENT_IDsecret already holds the App's Client ID (it was already wired to these steps), so no secrets change is required - this is a parameter rename only.Ports the fix already applied upstream in the ProjectTemplate (
ptr727/ProjectTemplateissue #88).