Skip to content

Commit 02d38dc

Browse files
committed
fix: release workflow should trigger for customization file changes
Changed paths-ignore from '**.md' to specific documentation files so that changes to .prompt.md, .agent.md, and SKILL.md files properly trigger releases
1 parent aee89ae commit 02d38dc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ on:
55
branches:
66
- main
77
paths-ignore:
8-
- "**.md"
8+
- "README.md"
9+
- "CONTRIBUTING.md"
10+
- "CODE_OF_CONDUCT.md"
11+
- "SECURITY.md"
912
- "LICENSE"
1013
- ".github/ISSUE_TEMPLATE/**"
1114
- ".github/PULL_REQUEST_TEMPLATE.md"
15+
- ".github/PULL_REQUEST_TEMPLATE.md"
1216

1317
permissions:
1418
contents: write

0 commit comments

Comments
 (0)