mirror of
https://github.com/yanhao98/renovate-example.git
synced 2026-02-04 13:40:34 +08:00
* chore(workflow): run weekly via schedule * Add checkout step to workflow configuration * Disable custom managers and commit body in default.json5 Commented out custom managers and commit body settings.
27 lines
765 B
YAML
27 lines
765 B
YAML
name: Check Renovate Configuration
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Runs once weekly at 00:00 UTC on Sunday. GitHub schedule uses UTC time.
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: npx --yes --package renovate renovate-config-validator
|
|
if: always()
|
|
- run: npx --yes --package renovate renovate-config-validator ./default.json5
|
|
if: always()
|
|
- run: npx --yes --package renovate -- renovate-config-validator ./default.json5 --strict
|
|
if: always()
|
|
- run: npx renovate --platform=local
|
|
if: always()
|
|
- run: npx renovate --platform=local --dry-run=full
|
|
if: always()
|
|
env:
|
|
LOG_LEVEL: debug
|