Files
PortProtonQt/.gitea/workflows/renovate.yml
2025-06-28 09:42:22 +05:00

28 lines
695 B
YAML

name: renovate
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41.1.4
steps:
- 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/renovate-config/config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}