forked from entelecheia/ros2-container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tasks.toml
80 lines (62 loc) · 2.03 KB
/
.tasks.toml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poe.tasks.clean]
cmd = "rm -rf book/_build docs/_build _site"
help = "remove documentation artifacts"
[tool.poe.tasks.version]
cmd = "semantic-release print-version --current"
help = "print the current version"
[tool.poe.tasks.next-version]
cmd = "semantic-release print-version --next"
help = "print the next version"
[tool.poe.tasks.changelog]
cmd = "semantic-release changelog --released"
help = "print the changelog for the current version"
[tool.poe.tasks.next-changelog]
cmd = "semantic-release changelog --unreleased"
help = "print the changelog for the next version"
[tool.poe.tasks.release-noop]
cmd = "semantic-release publish --noop -v DEBUG"
help = "run a dry-run of the release process"
[tool.poe.tasks.release-ci]
cmd = "semantic-release publish -v DEBUG -D commit_author='github-actions <action@github.com>'"
help = "run the release process in CI"
[tool.poe.tasks.prerelease-noop]
cmd = "semantic-release publish --noop -v DEBUG --prerelease"
help = "run a dry-run of the prerelease process"
[tool.poe.tasks.show-branches]
cmd = "git show-branch --list"
help = "show branches"
[tool.poe.tasks.show-tags]
cmd = "git tag --list"
help = "show tags"
[tool.poe.tasks.show-remotes]
cmd = "git remote --verbose"
help = "show remotes"
[tool.poe.tasks.show-refs]
cmd = "git show-ref"
help = "show refs"
[tool.poe.tasks.branch-chekcout-upstream]
sequence = [
{ cmd = "git checkout -B ${branch}" },
{ cmd = "git push --set-upstream origin ${branch}" },
]
help = "create a new branch and push it to origin"
args = ["branch"]
[tool.poe.tasks.branch-chekcout]
cmd = "git checkout ${branch}"
help = "checkout a branch"
args = ["branch"]
[tool.poe.tasks.main-checkout]
cmd = "git checkout main"
help = "checkout main"
[tool.poe.tasks.install]
cmd = "poetry install --without dev"
help = "install dependencies"
[tool.poe.tasks.install-dev]
cmd = "poetry install --with dev"
help = "install dev dependencies"
[tool.poe.tasks.update]
cmd = "poetry update"
help = "update dependencies"
[tool.poe.tasks.lock]
cmd = "poetry lock"
help = "lock dependencies"