Files
tunnel-please/.gitea/workflows/renovate.yml
bagas e9be7ac1bc
All checks were successful
renovate / renovate (push) Successful in 10s
Update .gitea/workflows/renovate.yml
2025-12-28 07:19:26 +00:00

28 lines
711 B
YAML

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