mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-13 21:07:00 -07:00
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:
@@ -17,6 +17,7 @@ permissions:
|
||||
checks: 'write'
|
||||
contents: 'read'
|
||||
statuses: 'write'
|
||||
packages: 'read'
|
||||
|
||||
defaults:
|
||||
run:
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
permissions:
|
||||
contents: 'read'
|
||||
packages: 'read'
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# .github/workflows/pr-checks.yml
|
||||
name: 'PR Checks'
|
||||
name: 'Checks'
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
Reference in New Issue
Block a user