-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-plz.toml
More file actions
45 lines (33 loc) · 1.01 KB
/
release-plz.toml
File metadata and controls
45 lines (33 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[workspace]
# path of the git-cliff configuration
changelog_config = "cliff.toml"
# enable changelog updates
changelog_update = true
# update dependencies with `cargo update`
dependencies_update = true
# disable git tags - managed by separate workflow
git_tag_enable = false
# disable GitHub releases (cargo-dist will handle this)
git_release_enable = false
# labels for the release PR
pr_labels = ["release"]
# disallow updating repositories with uncommitted changes
allow_dirty = false
# disallow packaging with uncommitted changes
publish_allow_dirty = false
# disable running `cargo-semver-checks`
semver_check = false
# disable cargo publish - not published to crates.io (default for binary crate)
publish = false
# Root binary crate — not released via release-plz
[[package]]
name = "rara-cli-template"
release = false
changelog_update = false
# Publish derive crate first (agent-describe depends on it)
[[package]]
name = "agent-describe-derive"
publish = true
[[package]]
name = "agent-describe"
publish = true