e82fad7820
Renovate / Renovate dependency updates (push) Failing after 58s
Renovate runs weekly (Monday 4am) and scans all LotusGuild repos for outdated dependencies, creating PRs for updates. Patch and devDeps updates are configured to automerge. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
563 B
YAML
26 lines
563 B
YAML
name: Renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 4 * * 1'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
renovate:
|
|
name: Renovate dependency updates
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Run Renovate
|
|
env:
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
LOG_LEVEL: info
|
|
run: |
|
|
npm install -g renovate
|
|
renovate \
|
|
--platform gitea \
|
|
--endpoint https://code.lotusguild.org \
|
|
--token "$RENOVATE_TOKEN" \
|
|
--config-file renovate.json
|