From 3825c25863e805e28fdac9cbb36d0ee673205cfa Mon Sep 17 00:00:00 2001 From: Ladislao Date: Tue, 19 Sep 2023 13:14:30 +0200 Subject: [PATCH] fix: replace custom CI token with the autogenerated one --- .github/workflows/cicd.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 127241c..cc36f6c 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -61,6 +61,10 @@ jobs: output1: ${{ steps.version-number.outputs.VERSION }} needs: [build, test-commits] if: github.ref == 'refs/heads/main' + permissions: + contents: write + issues: write + pull-requests: write steps: - name: Checkout uses: actions/checkout@v3 @@ -80,7 +84,7 @@ jobs: conventional-changelog-conventionalcommits - name: Release env: - GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # autogenerated run: | # run semantic release and pipe the output both to the console and a log file semantic-release 2>&1 | tee log.txt