diff options
| author | Andrii Klymenko <a.klymenko@vyos.io> | 2026-04-29 12:04:02 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-29 12:04:02 +0300 |
| commit | c49106e75c754bc2eb23d19188364d50bcae67f5 (patch) | |
| tree | ec03439739a33d8e5a9134ef04299e8dddf17904 /.github | |
| parent | 2410a3d342ee63650899ed88d79598911b94e3c7 (diff) | |
| parent | d849098c1726e56e12d0c99a5e27caf8c33d8cae (diff) | |
| download | vyos-http-api-tools-c49106e75c754bc2eb23d19188364d50bcae67f5.tar.gz vyos-http-api-tools-c49106e75c754bc2eb23d19188364d50bcae67f5.zip | |
Merge pull request #36 from vyos/T8531-restrict-mergify-commands
T8531: add Mergify config with commands restrictions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/mergify.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/mergify.yml b/.github/mergify.yml new file mode 100644 index 0000000..561cb3a --- /dev/null +++ b/.github/mergify.yml @@ -0,0 +1,26 @@ +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 + unqueue: *allowed + update: *allowed |
