To activate a plugin, you need to change active: false
to active: true
on each repository you want the plugin to take effect.
In .gitroot/plugins.yml
:
1 - url: /home/myuser/ladybug-0.0.1.wasm
2 name: ladybug
3- active: false
4+ active: true
5 run:
6 - path: issues/**/*.md
7 branch:
8 - "*"
9 when:
10 - add
11 - mod
Commit your change and push git add . && git commit -m "active plugin ladybug" && git push
. When the change will be in the defaultBranch GitRoot will use it.