GitRoot

craft your forge, build your project, grow your community freely
 1<!--
 2SPDX-FileCopyrightText: 2025 Romain Maneschi <romain@gitroot.dev>
 3
 4SPDX-License-Identifier: CC-BY-SA-4.0
 5-->
 6
 7# Active a plugin
 8
 9To activate a plugin, you need to change `active: false` to `active: true` on **each repository** you want the plugin to take effect.
10
11In `.gitroot/plugins.yml`:
12
13```diff
14 - url: /home/myuser/ladybug-0.0.1.wasm
15   name: ladybug
16-  active: false
17+  active: true
18   run:
19   - path: issues/**/*.md
20     branch:
21     - "*"
22     when:
23     - add
24     - mod
25```
26
27Commit your change and push `git add . && git commit -m "active plugin ladybug" && git push`. When the change will be in the [defaultBranch](../technicals/default_branch.md) GitRoot will use it.