Files
tunnel-please/.gitea/workflows/renovate.yml
bagas ea44cb4fac
Some checks failed
renovate / renovate (push) Failing after 2m35s
Update .gitea/workflows/renovate.yml
2025-12-28 07:02:56 +00:00

30 lines
612 B
YAML

name: renovate
on:
schedule:
- cron: "0 0 * * *"
push:
branches:
- renovate
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Renovate
run: npm install -g renovate
- name: Run Renovate
run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/{{username}}/{{repo name}/config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}