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

This commit is contained in:
2025-12-28 07:27:58 +00:00
parent e9be7ac1bc
commit 2725c772f1

View File

@@ -15,13 +15,14 @@ jobs:
- name: Checkout current repository - name: Checkout current repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Clone renovate-config repository - name: Clone renovate-config and copy config file
run: | run: |
git clone https://${{ secrets.RENOVATE_TOKEN }}@git.fossy.my.id/Renovate-Clanker/renovate-config.git renovate-config git clone https://${{ secrets.RENOVATE_TOKEN }}@git.fossy.my.id/Renovate-Clanker/renovate-config.git /tmp/renovate-config
cp /tmp/renovate-config/config.js ${{ gitea.workspace }}/config.js
- name: Run Renovate - name: Run Renovate
run: renovate run: renovate
env: env:
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/renovate-config/config.js RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js
LOG_LEVEL: "debug" LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}