Skip unnecessary CI/CD operations before execution. Detect unchanged content, cached builds, and irrelevant paths to reduce workflow costs and execution time.
Skip unnecessary CI/CD operations by detecting unchanged content, cached builds, and irrelevant paths before running expensive workflows. Use this when you need to reduce costs and execution time in distribution workflows, release automation, scheduled jobs, or monorepo builds.
/plugin marketplace add adaptive-enforcement-lab/claude-skills/plugin install patterns@ael-skillsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
examples.mdscripts/example-1.yamlscripts/example-2.yamlscripts/example-3.yamlApply work avoidance patterns to skip unnecessary CI/CD operations.
Skip Before Execute
Detect unchanged content, cached builds, and irrelevant paths before running expensive operations.
Work avoidance is valuable in GitHub Actions when:
| Pattern | Operator Manual | Engineering Pattern |
|---|---|---|
| Skip version-only changes | Content Comparison | Volatile Field Exclusion |
| Skip unchanged paths | Path Filtering | N/A (native GitHub feature) |
| Skip cached builds | Cache-Based Skip | Cache-Based Skip |
| Pattern | Operator Manual | Engineering Pattern |
|---|---|---|
| Skip version-only changes | Content Comparison | Volatile Field Exclusion |
| Skip unchanged paths | Path Filtering | N/A (native GitHub feature) |
| Skip cached builds | Cache-Based Skip | Cache-Based Skip |
Apply work avoidance patterns to skip unnecessary CI/CD operations.
Skip Before Execute
Detect unchanged content, cached builds, and irrelevant paths before running expensive operations.
Work avoidance is valuable in GitHub Actions when:
| Pattern | Operator Manual | Engineering Pattern |
|---|---|---|
| Skip version-only changes | Content Comparison | Volatile Field Exclusion |
| Skip unchanged paths | Path Filtering | N/A (native GitHub feature) |
| Skip cached builds | Cache-Based Skip | Cache-Based Skip |
See examples.md for detailed code examples.
on:
push:
paths:
- 'src/**'
- 'package.json'
paths-ignore:
- '**.md'
- 'docs/**'
See examples.md for detailed code examples.
Work avoidance is valuable in GitHub Actions when:
| Pattern | Operator Manual | Engineering Pattern |
|---|---|---|
| Skip version-only changes | Content Comparison | Volatile Field Exclusion |
| Skip unchanged paths | Path Filtering | N/A (native GitHub feature) |
| Skip cached builds | Cache-Based Skip | Cache-Based Skip |
See examples.md for detailed code examples.
on:
push:
paths:
- 'src/**'
- 'package.json'
paths-ignore:
- '**.md'
- 'docs/**'
See examples.md for detailed code examples.
See examples.md for code examples.