Skip to content

Commit 4a540ab

Browse files
Fix syntax
1 parent b970698 commit 4a540ab

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@ concurrency:
2727

2828
permissions:
2929
contents: read
30-
# Reusable child workflows can only request permissions <= what the
31-
# caller has. builds.yml and tests.yml need actions:read (GHA cache) and
32-
# packages:read (GHCR pulls), so grant them at the caller level too.
33-
actions: read
34-
packages: read
3530

3631
jobs:
3732
# Compute once which path groups changed; every other job references these
@@ -83,7 +78,9 @@ jobs:
8378
- .github/workflows/ci.yml
8479
- .github/workflows/tests.yml
8580
docs:
86-
- **/*.md
81+
# Quoted because YAML treats a leading `*` as an alias
82+
# reference and would otherwise reject this scalar.
83+
- "**/*.md"
8784
- include/**
8885
- src/**
8986
- docs/**

0 commit comments

Comments
 (0)