From 0fe3663edb0c5c63e0ebc52b6de0e912720688a7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Sep 2025 10:40:22 +0000 Subject: [PATCH 1/2] Initial plan From a36d1a451c17d7789e7d58b120ec62db23fdf974 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Sep 2025 10:44:47 +0000 Subject: [PATCH 2/2] fix: add permissions to npm-publish job to allow creating GitHub releases Co-authored-by: missinglink <738069+missinglink@users.noreply.github.com> --- .github/workflows/push.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 6169f8b..03cae7b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -7,6 +7,10 @@ jobs: needs: unit-tests if: github.ref == 'refs/heads/master' && needs.unit-tests.result == 'success' runs-on: ubuntu-24.04 + permissions: + contents: write + issues: write + pull-requests: write steps: - uses: actions/checkout@v4 - name: Install Node.js