From 61fafb28c606f1dae23e9a901d5053476007eb45 Mon Sep 17 00:00:00 2001 From: PoAn Yang Date: Mon, 22 Jul 2024 16:51:56 +0800 Subject: [PATCH] feat: add renovate.json & mergify.yml Signed-off-by: PoAn Yang --- .github/mergify.yml | 25 +++++++++++++++++++++++++ renovate.json | 5 +++++ 2 files changed, 30 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..952258a2 --- /dev/null +++ b/.github/mergify.yml @@ -0,0 +1,25 @@ +pull_request_rules: +- name: Automatically merge Renovate PRs + conditions: + - check-success="validation" + - check-success="main_jobs" + - author = renovate[bot] + actions: + merge: + method: rebase + +- name: Automatically approve Renovate PRs + conditions: + - check-success="validation" + - check-success="main_jobs" + - 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" + ] +}