Skip to content

Renovate

Renovate #6

Workflow file for this run

name: Renovate
on:
schedule:
- cron: '0 13 * * 1' # 8 AM CT Monday
pull_request:
paths:
- 'renovate.json'
- '.github/workflows/renovate.yaml'
workflow_dispatch:
inputs:
dryRun:
description: 'Dry run (no PRs created)'
required: false
default: 'false'
type: choice
options:
- 'false'
- 'true'
permissions:
contents: write
pull-requests: write
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Run Renovate
uses: renovatebot/github-action@v46.1.5
with:
configurationFile: renovate.json
token: ${{ secrets.CLOUDY_TOKEN }}
env:
LOG_LEVEL: info
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_DRY_RUN: ${{ github.event_name == 'pull_request' || inputs.dryRun || 'false' }}