Open
Conversation
pepicrft
pushed a commit
that referenced
this pull request
Apr 16, 2026
Replace the tag-triggered model with one where:
- The workflow runs on every push to main (and workflow_dispatch
for manual overrides).
- A `decide` job uses `git-cliff --bumped-version` to compute the
next semver from conventional commits since the last tag. If
there are no releasable commits, every downstream job is
skipped via `if: needs.decide.outputs.release == 'true'`.
- The `release` job runs every reversible step first — bump
mix.exs, write the checksum file from the freshly-built
artifacts, pre-seed the rustler_precompiled cache so hex
publish can compile without a GitHub release existing yet,
generate notes — and only then enters the irreversible block:
1. mix hex.publish (cannot be undone after 24h)
2. git push --atomic origin main vX.Y.Z (with rebase retry)
3. softprops/action-gh-release@v2 (cosmetic, easiest to fix)
If anything before #1 fails, nothing leaks. If #1 succeeds and
#2 races, we rebase and retry. If #3 fails, hex + tag are
already in place; the GitHub release can be created by hand.
The `chore(release): vX.Y.Z` commit pushed by the workflow uses
the default GITHUB_TOKEN, which by design does not retrigger
workflows — no [skip ci] needed.
workflow_dispatch supports a forced version input for emergency
or out-of-band releases.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Welcome to Renovate! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.
🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.
📚 See our Reading List for relevant documentation you may be interested in reading.
🔡 Do you want to change how Renovate upgrades your dependencies? Add your custom config to
renovate.jsonin this branch. Renovate will update the Pull Request description the next time it runs.Detected Package Files
native/javex_nif/Cargo.toml(cargo).github/workflows/ci.yml(github-actions).github/workflows/release.yml(github-actions)mise.toml(mise)mix.exs(mix)Configuration Summary
Based on the default config's presets, Renovate will:
fixfor dependencies andchorefor all others if semantic commits are in use.node_modules,bower_components,vendorand various test/tests (except for nuget) directories.What to Expect
With your current configuration, Renovate will create 13 Pull Requests:
chore(deps): update dependency elixir to v1.19.5
renovate/elixir-1.xmain1.19.5fix(deps): update rust crate deterministic-wasi-ctx to v4.0.1
renovate/deterministic-wasi-ctx-4.xmain=4.0.1chore(deps): update dependency rust to v1.95.0
renovate/rust-1.xmain1.95.0fix(deps): update rust crate sha2 to 0.11
renovate/sha2-0.xmain0.11fix(deps): update rust crate wasmparser to 0.246
renovate/wasmparser-0.xmain0.246chore(deps): update actions/cache action to v5
renovate/actions-cache-5.xmainv5chore(deps): update actions/checkout action to v6
renovate/actions-checkout-6.xmainv6chore(deps): update dependency ubuntu to v24
renovate/ubuntu-24.xmain24.04chore(deps): update github artifact actions (major)
renovate/major-github-artifact-actionsmainv8v7chore(deps): update jdx/mise-action action to v4
renovate/jdx-mise-action-4.xmainv4chore(deps): update softprops/action-gh-release action to v3
renovate/softprops-action-gh-release-3.xmainv3fix(deps): update rust crate wasmtime to v43
renovate/wasmtime-43.xmain43fix(deps): update rust crate wasmtime-wasi to v43
renovate/wasmtime-wasi-43.xmain43🚸 PR creation will be limited to maximum 2 per hour, so it doesn't swamp any CI resources or overwhelm the project. See docs for
prHourlyLimitfor details.❓ Got questions? Check out Renovate's Docs, particularly the Getting Started section.
If you need any further assistance then you can also request help here.
This PR was generated by Mend Renovate. View the repository job log.