From e79391390ef44f7924a1674845fd96c031bb8bfb Mon Sep 17 00:00:00 2001 From: Timothy Johnson Date: Thu, 12 Sep 2024 08:09:34 -0400 Subject: [PATCH] Fix missing permission on Bundle All workflow Signed-off-by: Timothy Johnson --- .github/workflows/zowe-cli-bundle-all.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/zowe-cli-bundle-all.yaml b/.github/workflows/zowe-cli-bundle-all.yaml index ce7d971..0d441e2 100644 --- a/.github/workflows/zowe-cli-bundle-all.yaml +++ b/.github/workflows/zowe-cli-bundle-all.yaml @@ -12,6 +12,8 @@ jobs: build-v1-lts: if: ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'v2') }} uses: ./.github/workflows/zowe-cli-bundle.yaml + permissions: + pull-requests: write secrets: JF_ARTIFACTORY_TOKEN: ${{ secrets.JF_ARTIFACTORY_TOKEN }} with: @@ -22,6 +24,8 @@ jobs: build-v2-lts: if: ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'v1') }} uses: ./.github/workflows/zowe-cli-bundle.yaml + permissions: + pull-requests: write secrets: JF_ARTIFACTORY_TOKEN: ${{ secrets.JF_ARTIFACTORY_TOKEN }} with: @@ -31,6 +35,8 @@ jobs: # build-next: # uses: ./.github/workflows/zowe-cli-bundle.yaml + # permissions: + # pull-requests: write # secrets: # JF_ARTIFACTORY_TOKEN: ${{ secrets.JF_ARTIFACTORY_TOKEN }} # with: