Files
Renovate/.gitea/workflows/workflow.yaml
Renovate Bot 6a261acae1
Some checks failed
Test Renovate Config / test-renovate (pull_request) Failing after 2m10s
Test Renovate Config / e2e-renovate (pull_request) Has been skipped
Update ghcr.io/renovatebot/renovate Docker tag to v43.233.3
2026-06-20 02:23:11 +00:00

34 lines
1.3 KiB
YAML

name: Run Renovate
on:
schedule:
- cron: '21 2 * * *'
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:43.233.3@sha256:498de63b02c02b49c34dfe0119b59da8e5232e701c813960bcbee80760b148dd
steps:
# Step 1: Check out the repository so your config file is available
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
# 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 }}