Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .agents/skills/github-actions-update/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: github-actions-update
description: Update GitHub Actions workflows
compatibility: GitHub Actions, YAML
license: MIT
metadata:
version: "1.0"
---

# GitHub Actions Workflows

These are in `.github/workflows/`.

## Glob patterns

Avoid redundant glob patterns. For in this example:

```
on:
push:
paths-ignore:
- "docs/**"
- "**/*.md"
```

We would not want to add `xyz/**/*.md` to the `paths-ignore` list, since it is already covered by the `**/*.md` pattern.