Commit 9fc6b14
fix: stop false-positive core detection in release-all workflow (#89)
* fix: stop false-positive core detection in release-all workflow
The auto-bump-modules workflow runs `go mod tidy` on root, which changes
go.sum and potentially go.mod. These lockfile/tidy changes were counted
as "core changes" on subsequent release-all runs, causing:
1. Spurious core releases every run
2. Module releases stuck behind the core release chain
(release-modules-no-core-change skipped because core_changed=true)
Fixes:
- Exclude go.sum from core change detection (lockfile, not source)
- Exclude cmd/* from core change detection (tooling, not library)
- Add configwatcher and eventlogger to module-release dropdown
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix: address PR review — remove cmd/* exclusion, align release.yml
- Remove cmd/* exclusion from release-all.yml core detection since cmd/
is part of the root module and not independently versioned
- Align release.yml core detection to also exclude go.sum, keeping both
workflows consistent
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>1 parent 42f5fa5 commit 9fc6b14
3 files changed
Lines changed: 14 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
15 | 16 | | |
16 | 17 | | |
| 18 | + | |
17 | 19 | | |
18 | 20 | | |
19 | 21 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
57 | | - | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
58 | 60 | | |
59 | 61 | | |
60 | 62 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
67 | | - | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
68 | 69 | | |
69 | 70 | | |
70 | 71 | | |
| |||
74 | 75 | | |
75 | 76 | | |
76 | 77 | | |
77 | | - | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
78 | 82 | | |
79 | 83 | | |
80 | 84 | | |
| |||
0 commit comments