-
Notifications
You must be signed in to change notification settings - Fork 263
chore: set correct parameter names #2975
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -25,11 +25,10 @@ jobs: | |||||
| id: app-token | ||||||
| uses: actions/create-github-app-token@v2 | ||||||
| with: | ||||||
| app_id: ${{ vars.RELEASE_PLEASE_TOKEN_PROVIDER_APP_ID }} | ||||||
| private_key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }} | ||||||
| installation_id: ${{ vars.RELEASE_PLEASE_TOKEN_PROVIDER_INSTALLATION_ID }} | ||||||
|
|
||||||
| app-id: ${{ vars.RELEASE_PLEASE_TOKEN_PROVIDER_APP_ID }} | ||||||
| private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }} | ||||||
|
||||||
| private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }} | |
| private_key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot, you are hallucinating. Please review the documentation again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The parameter name should be
app_idwith underscores, notapp-idwith hyphens. According to the actions/create-github-app-token@v2 documentation, the correct parameter name isapp_id.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot, you are hallucinating. Please review the documentation again.
https://github.com/actions/create-github-app-token