All checks were successful
CI / ci (push) Successful in 1m31s
renovate.json5 (config:recommended + semantic commits, no automerge, dependency dashboard; material3 stays on its 1.5-alpha pin in an isolated PR; test deps grouped; github-actions manager watches .gitea/workflows). Cadence owned by .gitea/workflows/renovate.yml (Mondays 05:00 UTC + manual dispatch), self-hosted via renovatebot/github-action, scoped to makiolaj/calendula. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
name: Renovate
|
|
|
|
on:
|
|
# Weekly sweep. Mondays 05:00 UTC — this cron owns the cadence; the repo's
|
|
# renovate.json5 deliberately has no internal schedule (avoids double-gating).
|
|
schedule:
|
|
- cron: '0 5 * * 1'
|
|
# Manual run for an on-demand sweep from the Actions tab.
|
|
workflow_dispatch:
|
|
|
|
# Never let two Renovate runs touch the repo at once.
|
|
concurrency:
|
|
group: renovate
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Run Renovate
|
|
uses: renovatebot/github-action@v40
|
|
env:
|
|
# Self-hosted Gitea, not github.com.
|
|
RENOVATE_PLATFORM: gitea
|
|
RENOVATE_ENDPOINT: https://gitea.jeanlucmakiola.de/api/v1
|
|
# Bot-account token (Gitea secret). Needs repo read/write + PR scope.
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
# Scope to this repo only — no org-wide autodiscovery.
|
|
RENOVATE_AUTODISCOVER: 'false'
|
|
RENOVATE_REPOSITORIES: '["makiolaj/calendula"]'
|
|
# Commits/PRs authored as the bot, not a real maintainer.
|
|
RENOVATE_GIT_AUTHOR: 'Renovate Bot <renovate@jeanlucmakiola.de>'
|
|
LOG_LEVEL: info
|