X Tutup
Skip to content

Commit cd163f0

Browse files
committed
Fix linter in CI
It turns out that YAML anchors are not supported https://github.com/cli/cli/actions/runs/115915028
1 parent 3122696 commit cd163f0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
name: Lint
22
on:
3-
push: &paths
3+
push:
44
paths:
55
- "**.go"
66
- go.mod
77
- go.sum
88
pull_request:
9-
<<: *paths
9+
paths:
10+
- "**.go"
11+
- go.mod
12+
- go.sum
1013

1114
jobs:
1215
lint:

0 commit comments

Comments
 (0)
X Tutup