Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/desktop-packaging-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,14 @@ on:
default: 'main'
type: 'string'

# A caller must grant every permission the called workflow's jobs declare, or
# the run fails to start — the check happens when the file is loaded, before
# any `if` is evaluated, so the publish job being unreachable in a dry run
# does not exempt its `contents: write`. Nothing here writes: `dry_run` is
# hardcoded true below, which skips both the publish and the mirror job.
Comment thread
yiliang114 marked this conversation as resolved.
permissions:
contents: 'read'
actions: 'read'
contents: 'write'

concurrency:
group: 'desktop-packaging-check'
Expand Down
Loading