From 1f4261c73e2154b519c712cc69ea9c4c67b6ca6d Mon Sep 17 00:00:00 2001 From: Ruslan Bredikhin Date: Thu, 30 Mar 2023 11:19:08 -0400 Subject: [PATCH] switch the org for optic-release-automation-action --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2429c9..40fcc04 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,12 +18,16 @@ on: jobs: release: + permissions: + pull-requests: write + contents: write runs-on: ubuntu-latest steps: - - uses: nearform/optic-release-automation-action@v4 + - uses: nearform-actions/optic-release-automation-action@v4 with: github-token: ${{ secrets.github_token }} npm-token: ${{ secrets[format('NPM_TOKEN_{0}', github.actor)] || secrets.NPM_TOKEN }} optic-token: ${{ secrets[format('OPTIC_TOKEN_{0}', github.actor)] || secrets.OPTIC_TOKEN }} semver: ${{ github.event.inputs.semver }} - commit-message: 'chore: release {version}' \ No newline at end of file + commit-message: 'chore: release {version}' +