mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-14 22:00:34 +00:00
## Summary
- Add communique tool to mise.toml
- Add `enhance-release` job to release workflow that runs after release
creation to generate AI-enhanced release notes
## Test plan
- [ ] Verify next release triggers the enhance-release job
- [ ] Confirm ANTHROPIC_API_KEY secret is configured in repo settings
🤖 Generated with [Claude Code](https://claude.com/claude-code)
<!-- CURSOR_SUMMARY -->
---
> [!NOTE]
> **Medium Risk**
> Adds a new post-release GitHub Actions job that uses an external AI
API and an elevated token to modify GitHub release notes; failures or
misconfigured secrets can break the release workflow and token scope
matters.
>
> **Overview**
> After the `release` job completes, the workflow now runs a new
`enhance-release` job that computes the tag from `package.json` and
calls `communique generate ... --github-release` to update the GitHub
release notes.
>
> The PR also adds `communique` to `mise.toml` so the tool is available
in CI, and wires in `ANTHROPIC_API_KEY` plus a dedicated
`RELEASE_PLZ_GITHUB_TOKEN` for the release-note update step.
>
> <sup>Written by [Cursor
Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit
d2335f661c. This will update automatically
on new commits. Configure
[here](https://cursor.com/dashboard?tab=bugbot).</sup>
<!-- /CURSOR_SUMMARY -->
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
334 B
TOML
13 lines
334 B
TOML
tasks.pre-commit = ["npm run all", "git add dist"]
|
|
tasks.test.alias = ["t"]
|
|
tasks.test.run = ["npm run all"]
|
|
tasks.lint = "bun run lint"
|
|
tasks."lint:fix" = "bun run format:write"
|
|
tasks.version = "npm version"
|
|
tasks.release-plz = "./scripts/release-plz.sh"
|
|
|
|
[tools]
|
|
node = '24'
|
|
git-cliff = 'latest'
|
|
gh = 'latest'
|
|
communique = 'latest'
|