mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-14 22:00:34 +00:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [jdx/mise-action](https://redirect.github.com/jdx/mise-action) | action | major | `v2` → `v4` | --- ### Release Notes <details> <summary>jdx/mise-action (jdx/mise-action)</summary> ### [`v4`](https://redirect.github.com/jdx/mise-action/compare/v3...v4) [Compare Source](https://redirect.github.com/jdx/mise-action/compare/v3...v4) ### [`v3`](https://redirect.github.com/jdx/mise-action/blob/HEAD/CHANGELOG.md#340---2025-10-31) [Compare Source](https://redirect.github.com/jdx/mise-action/compare/v2...v3) ##### 🚀 Features - use autofix.ci to auto-update dist/ on all PRs by [@​jdx](https://redirect.github.com/jdx) in [16e9fd5](16e9fd5251) - use autofix.ci to auto-update dist/ on all PRs ([#​308](https://redirect.github.com/jdx/mise-action/issues/308)) by [@​jdx](https://redirect.github.com/jdx) in [#​308](https://redirect.github.com/jdx/mise-action/pull/308) ##### 🐛 Bug Fixes - add missing `await` to `core.group` calls ([#​305](https://redirect.github.com/jdx/mise-action/issues/305)) by [@​smorimoto](https://redirect.github.com/smorimoto) in [#​305](https://redirect.github.com/jdx/mise-action/pull/305) - auto-update dist folder in Renovate PRs via GitHub Actions ([#​306](https://redirect.github.com/jdx/mise-action/issues/306)) by [@​jdx](https://redirect.github.com/jdx) in [#​306](https://redirect.github.com/jdx/mise-action/pull/306) - configure Renovate to ignore github-actions\[bot] commits by [@​jdx](https://redirect.github.com/jdx) in [993e7d0](993e7d0bb6) - run auto-update-dist workflow on all PRs by [@​jdx](https://redirect.github.com/jdx) in [6d0fd75](6d0fd75ed5) ##### 📚 Documentation - update to v3 in README ([#​290](https://redirect.github.com/jdx/mise-action/issues/290)) by [@​pdecat](https://redirect.github.com/pdecat) in [#​290](https://redirect.github.com/jdx/mise-action/pull/290) ##### ⚙️ Miscellaneous Tasks - upgrade all workflows to Node 24 by [@​jdx](https://redirect.github.com/jdx) in [c7b5f37](c7b5f37cad) - remove unused workflow by [@​jdx](https://redirect.github.com/jdx) in [aecb23d](aecb23d92f) ##### New Contributors - [@​smorimoto](https://redirect.github.com/smorimoto) made their first contribution in [#​305](https://redirect.github.com/jdx/mise-action/pull/305) - [@​pdecat](https://redirect.github.com/pdecat) made their first contribution in [#​290](https://redirect.github.com/jdx/mise-action/pull/290) *** </details> --- ### Configuration 📅 **Schedule**: (in timezone America/Chicago) - Branch creation - Only on Friday (`* * * * 5`) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/jdx/mise-action). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMTAuMiIsInVwZGF0ZWRJblZlciI6IjQzLjExMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
44 lines
No EOL
1.2 KiB
YAML
44 lines
No EOL
1.2 KiB
YAML
name: Release
|
|
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
release:
|
|
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Setup mise
|
|
uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4
|
|
|
|
- name: Release
|
|
run: ./scripts/postversion.sh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
enhance-release:
|
|
needs: [release]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4
|
|
- name: Enhance release notes with communique
|
|
run: |
|
|
TAG_NAME="v$(jq -r .version package.json)"
|
|
communique generate "$TAG_NAME" --github-release
|
|
env:
|
|
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_GITHUB_TOKEN }} |