From fd7846e47d6e55d4700fd476219c00ee36a30e22 Mon Sep 17 00:00:00 2001 From: Florian Greinacher Date: Wed, 25 Feb 2026 14:02:01 +0100 Subject: [PATCH 1/3] ci: add dry_release job --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f522ee80..53585397 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,3 +45,21 @@ jobs: cache: npm - run: npm ci - run: npm run lint + dry_release: + # permissions: + # contents: read # to be able to publish a GitHub release + # issues: read # to be able to comment on released issues + # pull-requests: write # to be able to comment on released pull requests + # id-token: write # to enable use of OIDC for npm provenance + name: dry_release + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + with: + cache: npm + node-version: lts/* + - run: npm ci + - run: npx semantic-release --dry-run + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From fa8b34021e11576b76a8b33ccaa551c5d8ee2576 Mon Sep 17 00:00:00 2001 From: Florian Greinacher Date: Wed, 25 Feb 2026 14:22:10 +0100 Subject: [PATCH 2/3] ci: disable ci verification --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 53585397..8f1a50cb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,6 +60,6 @@ jobs: cache: npm node-version: lts/* - run: npm ci - - run: npx semantic-release --dry-run + - run: npx semantic-release --dry-run --ci false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From aae21005f720c00370de031cf00b227774aeff84 Mon Sep 17 00:00:00 2001 From: Florian Greinacher Date: Wed, 25 Feb 2026 14:30:32 +0100 Subject: [PATCH 3/3] ci: enable semantic-release for pr ref --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8f1a50cb..754cadb0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,6 +60,7 @@ jobs: cache: npm node-version: lts/* - run: npm ci - - run: npx semantic-release --dry-run --ci false + - run: npx semantic-release --dry-run --ci false --branches $GITHUB_REF env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +