update to client id#10
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR migrates the pull-request-dashboard workflows from the deprecated app-id input of actions/create-github-app-token to the recommended client-id input, switching the referenced GitHub Actions variable from PR_DASHBOARD_APP_ID to PR_DASHBOARD_CLIENT_ID. This removes deprecation warnings during workflow execution. The author notes the new variable has already been added to repository settings.
Changes:
- Replaced
app-id: ${{ vars.PR_DASHBOARD_APP_ID }}withclient-id: ${{ vars.PR_DASHBOARD_CLIENT_ID }}across all token-creation steps. - Updated documentation (README and WEBHOOK_SETUP) to reference the new client ID variable.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/pull-request-dashboard.yml |
Switched token step to client-id/PR_DASHBOARD_CLIENT_ID. |
.github/workflows/pull-request-dashboard-repo.yml |
Updated all four token steps and an explanatory comment to use the client ID variable. |
.github/scripts/pull-request-dashboard/WEBHOOK_SETUP.md |
Updated setup instructions to reference PR_DASHBOARD_CLIENT_ID. |
.github/scripts/pull-request-dashboard/README.md |
Updated documentation reference to the client ID variable. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
trask
approved these changes
Jun 25, 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.
App ID is deprecated (and it giving warnings during the execution of those workflows).
Update to the recommended client ID.
I already added the env variable to the settings