Skip to content

Commit 026cfc5

Browse files
committed
ci: add packages write permissions to EE jobs in ci.yml
1 parent aacc82a commit 026cfc5

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,13 +294,19 @@ jobs:
294294
name: Dev EE
295295
needs: [rc, sanity, tox, lint, format, requirements]
296296
if: (needs.rc.outputs.rc == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/develop')
297+
permissions:
298+
contents: read
299+
packages: write
297300
uses: ./.github/workflows/ee.yml
298301
secrets: inherit
299302

300303
build_prod_ee:
301304
name: Release EE
302305
needs: release
303306
if: needs.release.outputs.new_release_published == 'true'
307+
permissions:
308+
contents: read
309+
packages: write
304310
uses: ./.github/workflows/ee.yml
305311
with:
306312
release: true

0 commit comments

Comments
 (0)