Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Key Changes: Generate GitHub App Token: Uses tibdex/github-app-token@v1 to generate an installation token. Inputs: app_id: The App ID stored in your repository variables. private_key: The private key stored in your repository secrets. Outputs: The action outputs a token that you can use for authentication. Checkout Code with Token: In actions/checkout@v3, set the token input to ${{ steps.generate_token.outputs.token }}. Use Token in Other Actions: For any actions that require authentication (e.g., peter-evans/create-pull-request@v4), use the generated token: token: ${{ steps.generate_token.outputs.token }}
- Loading branch information