Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ The `release.yml` workflow is authorized to publish releases to the dial9 crates
1. Merge your PRs to `main` using conventional commit messages (e.g. `feat:`, `fix:`, `feat!:` for breaking changes).
2. The release PR will update automatically. Review the changelog and version bumps.
3. If you need to adjust versions (e.g. force a major bump), edit `Cargo.toml` versions in the release PR before merging.
4. Merge the release PR.
5. Go to Actions → "Publish release" → Run workflow → confirm.
6. A team member approves the deployment in the `release` environment.
4. **Trigger CI:** The release PR is created by `GITHUB_TOKEN`, which means GitHub won't automatically trigger CI workflows on it. Before merging, close and reopen the PR to trigger CI. Wait for the `CI Pass` check to go green.
5. Merge the release PR.
6. Go to Actions → "Publish release" → Run workflow → confirm.
7. A team member approves the deployment in the `release` environment.

### Semver checks

Expand Down
15 changes: 15 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
git_release_enable = true
changelog_update = false
semver_check = true
pr_body = """
{% for release in releases %}
{% if release.title %}
### {{release.title}}
{% endif %}
Package: `{{release.package}}` {{release.previous_version}} -> {{release.next_version}}
{% if release.changelog %}
Changes:
{{release.changelog}}
{% endif %}
{% endfor %}
---

> **Maintainer note:** CI does not trigger automatically on this PR (GitHub limitation with `GITHUB_TOKEN`-created PRs). **Close and reopen** this PR to trigger CI before merging.
"""

[[package]]
name = "dial9-tokio-telemetry"
Expand Down
Loading