diff options
| author | John Estabrook <jsestabrook@gmail.com> | 2026-05-11 08:59:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-11 08:59:34 -0500 |
| commit | c2946efa67eb1687c25dd800cfa90d846f586258 (patch) | |
| tree | e274e57b0fecbefb5a88793e35a7706eeafb4bf4 | |
| parent | c5cc0122ca0f54776972dc1816cc0af182c13cc6 (diff) | |
| parent | f0904a063b1c261cc02eec6c61c3f8b523effebb (diff) | |
| download | hvinfo-c2946efa67eb1687c25dd800cfa90d846f586258.tar.gz hvinfo-c2946efa67eb1687c25dd800cfa90d846f586258.zip | |
Merge pull request #8 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 |
