Files
PortProtonQt/.gitea/workflows/renovate.yml
Boris Yumankulov c862a39225
All checks were successful
Code and build check / Check code (push) Successful in 1m40s
Code and build check / Build with uv (push) Successful in 54s
feat(renovate): use config from Linux-Gaming repo
Signed-off-by: Boris Yumankulov <boria138@altlinux.org>
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 }}