Commit 17c31ff
Fix changesets workflow - Remove duplicate tag creation and update job dependencies (#13592)
* Initial plan
* Fix changeset script - remove duplicate tag creation
The changeset.js script was trying to create a git tag that already exists,
causing the GitHub Actions workflow to fail. The workflow's release job creates
the tag first, then the changesets job calls changeset.js which tried to create
the same tag again.
Changes:
- Removed tag creation (git tag -a) from changeset.js
- Removed tag push (git push origin <tag>) from changeset.js
- Updated error recovery instructions to not mention tag operations
- Added documentation clarifying the script expects tags to be pre-created
The script now only updates CHANGELOG.md, deletes changeset files, commits
changes, and pushes to main - no tag operations.
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
* Update changesets job to depend on agent job
The changesets job now runs after the agent job completes, ensuring
release highlights are generated before the CHANGELOG is updated.
Before: agent -> depends on changesets
After: changesets -> depends on agent
This allows the agent to generate release highlights first, then the
CHANGELOG can be updated with the full context.
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: Peli de Halleux <pelikhan@users.noreply.github.com>1 parent 1d0c192 commit 17c31ff
File tree
3 files changed
+8
-14
lines changed- .github/workflows
- scripts
3 files changed
+8
-14
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
303 | 303 | | |
304 | 304 | | |
305 | 305 | | |
306 | | - | |
| 306 | + | |
307 | 307 | | |
308 | 308 | | |
309 | 309 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
12 | 16 | | |
13 | 17 | | |
14 | 18 | | |
| |||
492 | 496 | | |
493 | 497 | | |
494 | 498 | | |
495 | | - | |
496 | | - | |
497 | | - | |
498 | | - | |
499 | 499 | | |
500 | 500 | | |
501 | 501 | | |
502 | 502 | | |
503 | | - | |
504 | | - | |
505 | | - | |
506 | | - | |
507 | 503 | | |
508 | 504 | | |
509 | | - | |
| 505 | + | |
510 | 506 | | |
511 | 507 | | |
512 | 508 | | |
| |||
518 | 514 | | |
519 | 515 | | |
520 | 516 | | |
521 | | - | |
522 | 517 | | |
523 | | - | |
524 | 518 | | |
525 | 519 | | |
526 | 520 | | |
| |||
0 commit comments