From 4fd9ecbde412f640deaeb17a997aae8a9f5841c0 Mon Sep 17 00:00:00 2001 From: Andrea Amorosi Date: Tue, 26 Apr 2022 14:14:04 +0200 Subject: [PATCH] fix: removed token from remaining actions (#805) --- .github/workflows/on-merge-to-main.yml | 5 +---- .github/workflows/on-release-prod.yml | 3 --- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/on-merge-to-main.yml b/.github/workflows/on-merge-to-main.yml index 686104b77..7def015f4 100644 --- a/.github/workflows/on-merge-to-main.yml +++ b/.github/workflows/on-merge-to-main.yml @@ -16,9 +16,6 @@ jobs: steps: - name: "Checkout" uses: actions/checkout@v3 - with: - token: ${{ secrets.GH_PUBLISH_TOKEN }} - fetch-depth: 0 ######################### # Release new version ######################### @@ -44,7 +41,7 @@ jobs: run: npm run lerna-lint - name: Run tests run: npm run lerna-test - - name: update release draft + - name: Update release draft uses: release-drafter/release-drafter@v5.19.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/on-release-prod.yml b/.github/workflows/on-release-prod.yml index c636ddc2b..3c857b34b 100644 --- a/.github/workflows/on-release-prod.yml +++ b/.github/workflows/on-release-prod.yml @@ -13,9 +13,6 @@ jobs: steps: - name: "Checkout" uses: actions/checkout@v3 - with: - token: ${{ secrets.GH_PUBLISH_TOKEN }} - fetch-depth: 0 ######################### # Release new version #########################