Adds basic wrappers to build, init and create an issue
Signed-off-by: Zon Orti gitroot@zonorti.net (e96fffef43d21d7796451b686084923bb9686739)
Signed-off-by: Zon Orti gitroot@zonorti.net (77f56b92859d149e703cadfa8cb364036e991857)
Please review changes with:
1git fetch origin miseTasks
2git checkout miseTasks
3git diff origin/HEAD..HEAD
Make your changes about the code inside the code directly (remarks, questions can be made in the form of comments). General remarks on the why can be made here. When done commit and push directly on this branch. Graft plugin will make the diff and display it here.
When then changes are ready to be merged, change the status from ‘status: review’ to ‘status: merge’.
Love it, thanks for this contribution!
I have added a task test and fixed missing , in plugins as you will see below.
If you are ok with all of that please do:
1git rebase -i main
Fixup all commits to keep only first and reword it, because “add user zon…” will not be what the commit do. Something like “use mise tasks…”
(5c87370cec82226b15259b918e4ed54eaa313472)
1--- a/app/libs/rust/plugin/src/gitroot.rs
2+++ b/app/libs/rust/plugin/src/gitroot.rs
3@@ -29,8 +29,8 @@
4 #[serde(rename_all = "camelCase")]
5 pub struct ForgeConf {
6 domain: String,
7- external_ssh_addr: String
8- external_http_addr: String
9+ external_ssh_addr: String,
10+ external_http_addr: String,
11 }
12
13 #[derive(Debug, Deserialize)]
1--- a/mise.toml
2+++ b/mise.toml
3@@ -14,10 +14,13 @@
4 run = "make build"
5
6 [tasks.init]
7-description = "Build the single binary"
8+description = "Configure your git client"
9 run = ".gitroot/init.sh"
10
11 [tasks.issue]
12 description = "Create an issue"
13 run = ".gitroot/issue.sh"
14
15+[tasks.test]
16+description = "Execute tests"
17+run = "make testall"
Signed-off-by: Zon Orti gitroot@zonorti.net (10c67f35b972142f62e848a1d7bbb73a1370fb1a)
Welcome Zon Orti as the #3 contributor 🚀
(854502d68cb16267192abcb4a2d16644efc40e98)