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
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
id: app-token
with:
client-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
Comment on lines +19 to +23
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Avoid reinstating unavailable GitHub App token flow

Re-adding actions/create-github-app-token here makes the release job depend on a GitHub App installation for this repo, but this exact step was just removed in the preceding change because it failed with Not Found for repository installation lookup; putting it back will cause release-plz runs on main to fail again before release logic executes whenever the app is still not installed/configured for rolldown/notify.

Useful? React with 👍 / 👎.


- uses: oxc-project/release-plz@e2b12f55ad64a22af8e93634b94439c42913afca # v1.0.6
with:
PAT: ${{ secrets.ROLLDOWN_BOT_PAT }}
PAT: ${{ steps.app-token.outputs.token }}
Loading