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: 1 addition & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ on:
push:
branches:
- main
pull_request:
branches:
- main
types:
- closed

permissions:
contents: write
Expand All @@ -21,7 +16,7 @@ jobs:
# Squash merges embed individual commit messages in the body, and automated
# commits (prerelease bumps, etc.) include [skip ci] — which would incorrectly
# suppress the release workflow if we used contains() on the full body.
if: "${{ !startsWith(github.event.head_commit.message, 'chore: version packages for release [skip ci]') }}"
if: "${{ github.event_name == 'push' && !startsWith(github.event.head_commit.message, 'chore: version packages for release [skip ci]') }}"
steps:
- name: Generate PerAsperaCI token
id: app-token
Expand All @@ -42,7 +37,6 @@ jobs:
node-version: 22
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
provenance: true

- run: pnpm install --frozen-lockfile

Expand Down
Loading