Update .gitea/workflows/renovate.yml
All checks were successful
renovate / renovate (push) Successful in 10s

This commit is contained in:
2025-12-28 07:19:26 +00:00
parent 3b976d4d51
commit e9be7ac1bc

View File

@@ -2,7 +2,7 @@ name: renovate
on: on:
schedule: schedule:
- cron: "@daily" - cron: "0 0 * * *"
push: push:
branches: branches:
- renovate - renovate
@@ -12,15 +12,16 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: git.fossy.my.id/renovate-clanker/renovate:latest container: git.fossy.my.id/renovate-clanker/renovate:latest
steps: steps:
- name: Checkout renovate-config repository - name: Checkout current repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
repository: Renovate-Clanker/renovate-config
path: renovate-config
- uses: actions/checkout@v4 - name: Clone renovate-config repository
- run: renovate run: |
git clone https://${{ secrets.RENOVATE_TOKEN }}@git.fossy.my.id/Renovate-Clanker/renovate-config.git renovate-config
- name: Run Renovate
run: renovate
env: env:
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/renovate-config/config.js RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/renovate-config/config.js
LOG_LEVEL: "debug" LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}