.release-plz.toml 579 B

123456789101112
  1. [workspace]
  2. allow_dirty = true # allow updating repositories with uncommitted changes
  3. changelog_config = "cliff.toml"
  4. # dependencies_update = true # update dependencies with `cargo update`
  5. pr_labels = ["release"] # add the `release` label to the release Pull Request
  6. publish_allow_dirty = true # add `--allow-dirty` to `cargo publish`
  7. semver_check = false # disable API breaking changes checks
  8. publish_timeout = "10m" # set a timeout for `cargo publish`
  9. # release_commits = "^feat:" # prepare release only if at least one commit matches a regex
  10. # git_tag_name = "{{ version }}"