We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b970698 commit 4a540abCopy full SHA for 4a540ab
1 file changed
.github/workflows/ci.yml
@@ -27,11 +27,6 @@ concurrency:
27
28
permissions:
29
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
35
36
jobs:
37
# Compute once which path groups changed; every other job references these
@@ -83,7 +78,9 @@ jobs:
83
78
- .github/workflows/ci.yml
84
79
- .github/workflows/tests.yml
85
80
docs:
86
- - **/*.md
81
+ # Quoted because YAML treats a leading `*` as an alias
82
+ # reference and would otherwise reject this scalar.
+ - "**/*.md"
87
- include/**
88
- src/**
89
- docs/**
0 commit comments