mirror of
https://github.com/project-zot/zot.git
synced 2026-06-16 04:17:55 +08:00
Fix permissions for image sync and stale workflows
Looks like read|write is not a correct value: https://github.com/project-zot/zot/actions/runs/2743961177 https://github.com/project-zot/zot/actions/runs/2743965531 Write should include both, so let's try to use that. Signed-off-by: Andrei Aaron <andaaron@cisco.com>
This commit is contained in:
@@ -5,8 +5,8 @@ on:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
issues: read|write
|
||||
pull-requests: read|write
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
|
||||
@@ -11,7 +11,7 @@ env:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
packages: read|write
|
||||
packages: write
|
||||
|
||||
jobs:
|
||||
sync-golang:
|
||||
|
||||
Reference in New Issue
Block a user