Skip to content

Commit

Permalink
Fix github action CI permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewSirenko committed Aug 20, 2024
1 parent ed9dab3 commit b52ec41
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/generate-code-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
cover-base:
name: Generate Base Coverage
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout base
uses: actions/checkout@v4
Expand All @@ -44,6 +45,7 @@ jobs:
cover-pr:
name: Generate PR Coverage
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout PR
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/helm-chart-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ on:
jobs:
release:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/output-code-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
output-code-coverage:
name: Output Code Coverage
runs-on: ubuntu-latest
permissions: write-all
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#using-data-from-the-triggering-workflow
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
build:
name: Release
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Create Release
id: create-release
Expand Down

0 comments on commit b52ec41

Please sign in to comment.