Skip to content

Commit 1181ee5

Browse files
authored
fix: remove paths-ignore from release.yml so content-only changes still gate releases on commit prefix (#53)
Closes DTD#50. Mirrors DTD#47 pattern fixed across the tool repos. The previous paths-ignore block excluded `*.md`, `docs/`, `standards/`, `LICENSE`, and `release-drafter.yml` from triggering the workflow, but the meta-repo's release.yml uses VERSION-vs-latest-tag semantics (not commit-prefix). The result was content edits to standards/ or docs/ that bumped VERSION still got skipped at trigger time. Removing the block lets every push to main reach the workflow; the VERSION-vs-tag check then correctly decides whether to release. Bumps VERSION 1.9.4 -> 1.9.5 to validate the fix end-to-end (this very commit will both bump VERSION and previously would have been excluded; with the fix it should fire and release v1.9.5). Made-with: Cursor
1 parent f730cef commit 1181ee5

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@ name: Release
33
on:
44
push:
55
branches: [main]
6-
paths-ignore:
7-
- "*.md"
8-
- "docs/**"
9-
- "standards/**"
10-
- "LICENSE"
11-
- ".github/release-drafter.yml"
126
workflow_dispatch:
137

148
permissions:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.4
1+
1.9.5

0 commit comments

Comments
 (0)