From a3693e69a9791b1f2e934c9942036c4a3876f91b Mon Sep 17 00:00:00 2001 From: kovagoadi Date: Thu, 23 Oct 2025 23:34:50 +0200 Subject: [PATCH] testing new config --- .gitea/workflows/workflow.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index ef6946d..0659170 100644 --- a/.gitea/workflows/workflow.yaml +++ b/.gitea/workflows/workflow.yaml @@ -3,16 +3,25 @@ on: schedule: - cron: '0 3 * * *' workflow_dispatch: + jobs: renovate: runs-on: ubuntu-latest steps: + # Step 1: Check out the repository so your config file is available - name: Checkout uses: actions/checkout@v4.1.1 + + # Step 2: Run the official Renovate action - name: Self-hosted Renovate uses: renovatebot/github-action@v40.1.2 with: + # This token is required to allow Renovate to create Pull Requests token: ${{ secrets.RENOVATE_TOKEN }} - configurationFile: renovate-config.js - logLevel: debug + # Correctly specify the config file path relative to your repo root + # This action will handle mapping it into the container correctly. + configurationFile: renovate-config.js + + # Optional: Set the log level for debugging + logLevel: debug