Files
Renovate/.gitea/workflows/workflow.yaml
T
renovate-bot 7a89cbf0b8
Test Renovate Config / test-renovate (push) Skipped
Test Renovate Config / e2e-renovate (push) Skipped
Test Renovate Config / test-renovate (pull_request) Successful in 2m55s
Test Renovate Config / e2e-renovate (pull_request) Successful in 2m38s
Update ghcr.io/renovatebot/renovate Docker tag to v44.83.1
2026-09-14 02:24:23 +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:44.83.1@sha256:756b0c3ac88535d98fb714303653f4b34a12cdee1a499bf7fd12d218e3b0a120
steps:
# Step 1: Check out the repository so your config file is available
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
# Step 2: Run the official Renovate action
- name: Self-hosted Renovate
# uses: renovatebot/[email protected]
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 }}