We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
github-actions-update
1 parent b5e34e6 commit 5962b6dCopy full SHA for 5962b6d
1 file changed
.agents/skills/github-actions-update/SKILL.md
@@ -0,0 +1,26 @@
1
+---
2
+name: github-actions-update
3
+description: Update GitHub Actions workflows
4
+compatibility: GitHub Actions, YAML
5
+license: MIT
6
+metadata:
7
+ version: "1.0"
8
9
+
10
+# GitHub Actions Workflows
11
12
+These are in `.github/workflows/`.
13
14
+## Glob patterns
15
16
+Avoid redundant glob patterns. For in this example:
17
18
+```
19
+on:
20
+ push:
21
+ paths-ignore:
22
+ - "docs/**"
23
+ - "**/*.md"
24
25
26
+We would not want to add `xyz/**/*.md` to the `paths-ignore` list, since it is already covered by the `**/*.md` pattern.
0 commit comments