Skip to content

Commit 5962b6d

Browse files
Add a github-actions-update skill (#1374)
1 parent b5e34e6 commit 5962b6d

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

  • .agents/skills/github-actions-update
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)