Skip to content

Commit c91a9df

Browse files
fix(ci): repair the permissions block indentation (#756)
The `permissions:` block added by the caller-permission campaign was indented one level too deep (appended at job-child indent + 2), which makes the whole workflow file invalid YAML (`mapping values are not allowed here`) and stops the workflow loading at all. This dedents the block to job-key level — keeping the grants — and validates the file parses before committing.
1 parent 3da0c39 commit c91a9df

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/mirror.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
mirror:
1515
uses: hyperpolymath/standards/.github/workflows/mirror-reusable.yml@571cc734cd69fb846032ec77a662aa8ee4fc32cd
1616
secrets: inherit
17-
permissions:
18-
actions: read
19-
contents: read
20-
security-events: write
17+
permissions:
18+
actions: read
19+
contents: read
20+
security-events: write

0 commit comments

Comments
 (0)