From c862a39225b5651047fa3b34b36491487d46b7ff Mon Sep 17 00:00:00 2001 From: Boris Yumankulov Date: Sat, 28 Jun 2025 09:42:22 +0500 Subject: [PATCH] feat(renovate): use config from Linux-Gaming repo Signed-off-by: Boris Yumankulov --- .gitea/workflows/renovate.yml | 15 ++++++++++++--- config.js | 8 -------- 2 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 config.js diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml index e8143a1..a50a153 100644 --- a/.gitea/workflows/renovate.yml +++ b/.gitea/workflows/renovate.yml @@ -10,9 +10,18 @@ jobs: runs-on: ubuntu-latest container: ghcr.io/renovatebot/renovate:41.1.4 steps: - - uses: https://gitea.com/actions/checkout@v4 - - run: renovate + - name: Checkout main repository + uses: https://gitea.com/actions/checkout@v4 + + - name: Checkout renovate config repository + uses: https://gitea.com/actions/checkout@v4 + with: + repository: Linux-Gaming/renovate-config + path: renovate-config + + - name: Run Renovate + run: renovate env: - RENOVATE_CONFIG_FILE: "/workspace/Boria138/PortProtonQt/config.js" + RENOVATE_CONFIG_FILE: "/workspace/renovate-config/config.js" LOG_LEVEL: "debug" RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} diff --git a/config.js b/config.js deleted file mode 100644 index 152703b..0000000 --- a/config.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - "endpoint": "https://git.linux-gaming.ru/api/v1", - "gitAuthor": "Renovate Bot ", - "platform": "gitea", - "onboardingConfigFileName": "renovate.json", - "autodiscover": true, - "optimizeForDisabled": true, -};