Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,19 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v4
- name: Generate Release Bot App Token
id: generate-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.RELEASE_BOT_APP_ID }}
private-key: ${{ secrets.RELEASE_BOT_APP_PRIVATE_KEY }}

- uses: actions/checkout@v6
with:
# Persist releasebot app credentials to ensure that the push
Copy link

Copilot AI Jan 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment refers to "releasebot" but the GitHub App is called "Release Bot" (with a space). Consider using consistent naming, such as "Release Bot app credentials" to match the app name used in the PR title and description.

Suggested change
# Persist releasebot app credentials to ensure that the push
# Persist Release Bot app credentials to ensure that the push

Copilot uses AI. Check for mistakes.
# below can bypass branch protection rules
token: ${{ steps.generate-token.outputs.token }}
persist-credentials: true
fetch-depth: 0

# Branch validation: Only allow develop (beta) or main (stable)
Expand Down