diff options
| author | John Estabrook <jestabro@vyos.io> | 2026-05-11 09:01:06 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-11 09:01:06 -0500 |
| commit | 0b47593fae2434e1013b15a20b13ae8565db224e (patch) | |
| tree | 213fee7a17cad18cdab5e2e7d92cff740fac0057 | |
| parent | dde13f56e8dcbc959191806e60e3f0b90d13a598 (diff) | |
| parent | 7ceef12cc41847a3f216e8cf8eac8059ebf64e46 (diff) | |
| download | live-boot-0b47593fae2434e1013b15a20b13ae8565db224e.tar.gz live-boot-0b47593fae2434e1013b15a20b13ae8565db224e.zip | |
Merge pull request #12 from vyos/T8531-restrict-mergify-commands
T8531: add Mergify config with commands restrictions
| -rw-r--r-- | .github/mergify.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/mergify.yml b/.github/mergify.yml new file mode 100644 index 0000000..b2cf6ac --- /dev/null +++ b/.github/mergify.yml @@ -0,0 +1,25 @@ +pull_request_rules: + - name: Label conflicting pull requests + description: Add a label to a pull request with conflict to spot it easily + conditions: + - conflict + - '-closed' + actions: + label: + toggle: + - conflicts + +commands_restrictions: + backport: &allowed + conditions: + - or: + - sender=@vyos/maintainers + - sender=vyosbot + copy: *allowed + dequeue: *allowed + queue: *allowed + rebase: *allowed + refresh: *allowed + requeue: *allowed + squash: *allowed + update: *allowed |
