From 3f30633ef4cd4fda2f376db85e06014778aa1cca Mon Sep 17 00:00:00 2001 From: Daniel Gietmann Date: Sat, 21 Feb 2026 20:41:37 +0100 Subject: [PATCH 1/2] chore: update GitHub Actions --- .github/workflows/publish.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9505f66..da92433 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,7 +5,7 @@ on: types: [published] permissions: - contents: write + contents: read packages: write jobs: @@ -48,8 +48,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v6 - with: - token: ${{ secrets.GITHUB_TOKEN }} - name: Setup pnpm uses: pnpm/action-setup@v4 @@ -82,12 +80,3 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - name: Commit version bump - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add package.json - git commit -m "chore: bump version to ${RELEASE_TAG#v}" || echo "No changes to commit" - git push origin HEAD:main - env: - RELEASE_TAG: ${{ github.ref_name }} From f4334190de38a26ebb8b780e2261507b69e7fb59 Mon Sep 17 00:00:00 2001 From: Daniel Gietmann Date: Sat, 21 Feb 2026 20:42:02 +0100 Subject: [PATCH 2/2] chore: increase header max length in commitlint configuration to 100 --- commitlint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.mjs b/commitlint.config.mjs index c79c193..86d5e0c 100644 --- a/commitlint.config.mjs +++ b/commitlint.config.mjs @@ -21,6 +21,6 @@ export default { 'subject-case': [2, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']], 'subject-empty': [2, 'never'], 'subject-full-stop': [2, 'never', '.'], - 'header-max-length': [2, 'always', 72], + 'header-max-length': [2, 'always', 100], }, };