From 21a44ec2ebe1a4c8d94b33fc9a0db3540f2f1ce1 Mon Sep 17 00:00:00 2001 From: renovate Date: Fri, 13 Mar 2026 03:25:36 +0000 Subject: [PATCH] Adicionar config.js --- config.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 config.js diff --git a/config.js b/config.js new file mode 100644 index 0000000..b797a97 --- /dev/null +++ b/config.js @@ -0,0 +1,28 @@ + +module.exports = { + platform: 'gitea', + endpoint: 'https://git.morpheusnox.shop/api/v1', + token: process.env.RENOVATE_TOKEN, + autodiscover: true, + autodiscoverFilter: 'x3r0th/*', + onboarding: false, + requireConfig: 'ignored', + gitAuthor: 'Renovate Bot ', + onboardingConfig: { + extends: ['config:base'], + }, + + packageRules: [ + { + matchUpdateTypes: ['minor', 'patch', 'pin', 'digest'], + automerge: true, + automergeType: 'branch', + }, + { + matchUpdateTypes: ['major'], + automerge: false, + }, + ], + + suppressNotifications: ['prIgnoreNotification'], + }; \ No newline at end of file