Files
rinoa-docker/.gitea/workflows/renovate.yml
T
Trez.One ae2e2c0132
Renovate / renovate (push) Failing after 29s
Adding npm install and build steps.
2025-09-22 10:28:14 -04:00

34 lines
834 B
YAML

name: Renovate
on:
schedule:
- cron: "0/30 * * * *"
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
- name: Install Node dependencies
run: npm install
- name: Build Renovate Action
run: npm run build
- name: Renovate
uses: https://git.trez.wtf/Trez.One/renovate-github-action@gitea-compatible
with:
configurationFile: ${GITHUB_WORKSPACE}/renovate.json
docker-volumes-from: ${{ env.JOB_CONTAINER_NAME }}
renovate-version: 41.97.7-full
token: ${{ secrets.RENOVATE_BOT_TOKEN }}
env:
LOG_LEVEL: debug