From cf6593f58f01dfdad2c2172c3d46fce590a757a6 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 12 Jul 2023 14:01:39 +0200 Subject: [PATCH] adds renovate support (#8) #### :book: Summary - testing renovate support with gitea-actions #### :bookmark_tabs: Test Plan > :bulb: Select your test plan for the code changes. - [x] CI pipeline tests - [ ] Custom test - [ ] No test plan ##### Details / Justification #### :books: Additional Notes Co-authored-by: OCram85 Reviewed-on: https://gitea.ocram85.com/OCram85/swarmproxy/pulls/8 --- renovate.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..0c33656 --- /dev/null +++ b/renovate.json @@ -0,0 +1,12 @@ +{ + "dependencyDashboard": true, + "docker": { + "enabled": true + }, + "github-actions": { + "enabled": true, + "fileMatch": [ + "^\\.gitea/workflows/[^/]+\\.ya?ml$" + ] + } +}