-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
30 lines (24 loc) · 791 Bytes
/
mise.toml
File metadata and controls
30 lines (24 loc) · 791 Bytes
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
[tools]
"pipx:bump-my-version" = "1"
shellcheck = "0.10"
[tasks.pre-commit]
description = "Run pre-commit"
run = "pre-commit run --all-files --verbose --show-diff-on-failure --color always"
[tasks."bump-version:major"]
description = "Increment the major version (X.y.z)"
run = "bump-my-version bump major"
depends_post = ["git-show"]
[tasks."bump-version:minor"]
description = "Increment the minor version (x.Y.z)"
run = "bump-my-version bump minor"
depends_post = ["git-show"]
[tasks."bump-version:patch"]
description = "Increment the patch version (x.y.Z)"
run = "bump-my-version bump patch"
depends_post = ["git-show"]
[tasks.git-show]
hide = true
run = "git show"
[tasks.git-push]
description = "Push the current branch and related tags"
run = "git push --follow-tags origin HEAD"