From 7226817a6bfffa25d9981eed88cdeefa13ac1b74 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Tue, 21 Oct 2025 20:37:07 -0700 Subject: [PATCH] fix(ci): correct syntax in orchestrator permissions --- .github/workflows/orchestrator.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/orchestrator.yml b/.github/workflows/orchestrator.yml index b3faba69b4..40a026f5ca 100644 --- a/.github/workflows/orchestrator.yml +++ b/.github/workflows/orchestrator.yml @@ -9,21 +9,21 @@ on: merge_group: permissions: - contents: read - packages: write - pull-requests: write - security-events: write - checks: write - statuses: write - actions: read - attestations: read - deployments: read - discussions: read - issues: read - models: read - pages: read - repository-projects: read - id-token: read + contents: 'read' + packages: 'write' + pull-requests: 'write' + security-events: 'write' + checks: 'write' + statuses: 'write' + actions: 'read' + attestations: 'read' + deployments: 'read' + discussions: 'read' + issues: 'read' + models: 'read' + pages: 'read' + repository-projects: 'read' + id-token: 'read' concurrency: group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'