Skip to content

Commit 36364b4

Browse files
committed
chore: Add write permissions for frontend, backend, backend-library, and backend-data jobs in PR checks workflow
1 parent 83ba157 commit 36364b4

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/pr-checks.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,24 +45,32 @@ jobs:
4545
uses: ./.github/workflows/tests.yml
4646

4747
frontend:
48+
permissions:
49+
contents: write
4850
if: ${{ needs.changes.outputs.frontend == 'true' }}
4951
needs: changes
5052
secrets: inherit
5153
uses: ./.github/workflows/frontend.yml
5254

5355
backend:
56+
permissions:
57+
contents: write
5458
if: ${{ needs.changes.outputs.backend == 'true'}}
5559
needs: changes
5660
secrets: inherit
5761
uses: ./.github/workflows/backend-api.yml
5862

5963
backend-library:
64+
permissions:
65+
contents: write
6066
if: ${{ needs.changes.outputs.backendLibrary == 'true' }}
6167
needs: changes
6268
secrets: inherit
6369
uses: ./.github/workflows/backend-library.yml
6470

6571
backend-data:
72+
permissions:
73+
contents: write
6674
if: ${{ needs.changes.outputs.backendData == 'true' }}
6775
needs: changes
6876
secrets: inherit

0 commit comments

Comments
 (0)