Files
Renovate/.gitea/workflows/workflow.yaml
Renovate Bot 7d93d5616a
All checks were successful
Test Renovate Config / test-renovate (pull_request) Successful in 2m39s
Test Renovate Config / e2e-renovate (pull_request) Successful in 2m15s
Update ghcr.io/renovatebot/renovate Docker tag to v43.29.2
2026-02-21 03:23:05 +00:00

34 lines
1.3 KiB
YAML

name: Run Renovate
on:
schedule:
- cron: '21 3 * * *'
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:43.29.2@sha256:7f2cb2ad97c2c63aa32921ba732a197dff97ef239c4a10181a85a8c6ed65a8b9
steps:
# Step 1: Check out the repository so your config file is available
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
# Step 2: Run the official Renovate action
- name: Self-hosted Renovate
# uses: renovatebot/github-action@v40.1.2
run: renovate
# with:
# # This token is required to allow Renovate to create Pull Requests
# token: ${{ secrets.RENOVATE_TOKEN }}
# # Correctly specify the config file path relative to your repo root
# # This action will handle mapping it into the container correctly.
# configurationFile: '/workspace/kovagoadi.hu/Renovate/renovate-config.js'
# # Optional: Set the log level for debugging
# logLevel: debug
env:
RENOVATE_CONFIG_FILE: "/workspace/kovagoadi.hu/Renovate/renovate-config.js"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}