fix(workflows): Add packages:read permission and rename orchestrator

Adds 'packages: read' permission to the 'ci.yml' and 'e2e.yml' workflows. This is necessary to allow the jobs to download packages from the GitHub Packages registry, fixing the 403 Forbidden error during 'npm install'.

Also renames the 'orchestrator.yml' workflow from 'PR Checks' to 'Checks' for brevity.
This commit is contained in:
mkorwel
2025-10-21 21:48:31 -07:00
parent 2e0bf57e63
commit f6727cc14f
3 changed files with 6 additions and 1 deletions
+1
View File
@@ -17,6 +17,7 @@ permissions:
checks: 'write'
contents: 'read'
statuses: 'write'
packages: 'read'
defaults:
run:
+4
View File
@@ -1,3 +1,7 @@
permissions:
contents: 'read'
packages: 'read'
on:
workflow_call:
inputs:
+1 -1
View File
@@ -1,5 +1,5 @@
# .github/workflows/pr-checks.yml
name: 'PR Checks'
name: 'Checks'
on:
pull_request: