From 9f7bc62227000640f342e810ca8b49d8a9fd2663 Mon Sep 17 00:00:00 2001 From: PoAn Yang Date: Mon, 22 Jul 2024 17:19:10 +0800 Subject: [PATCH] feat: add renovate.json & mergify.yml Signed-off-by: PoAn Yang --- .github/mergify.yml | 23 +++++++++++++++++++++++ renovate.json | 5 +++++ 2 files changed, 28 insertions(+) create mode 100644 .github/mergify.yml create mode 100644 renovate.json diff --git a/.github/mergify.yml b/.github/mergify.yml new file mode 100644 index 00000000..fb5426e3 --- /dev/null +++ b/.github/mergify.yml @@ -0,0 +1,23 @@ +pull_request_rules: +- name: Automatically merge Renovate PRs + conditions: + - check-success="call-dapper-build / dapper-build" + - author = renovate[bot] + actions: + merge: + method: rebase + +- name: Automatically approve Renovate PRs + conditions: + - check-success="call-dapper-build / dapper-build" + - author = renovate[bot] + actions: + review: + type: APPROVE + +- name: Ask to resolve conflict + conditions: + - conflict + actions: + comment: + message: This pull request is now in conflict. Could you fix it @{{author}}? 🙏 diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..360c7f1f --- /dev/null +++ b/renovate.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "github>harvester/renovate:renovate-default" + ] +}