This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
vyos-config/.github/workflows/schedule-renovate.yaml

38 lines
866 B
YAML
Raw Normal View History

2023-05-03 07:37:09 -05:00
---
name: Schedule - Renovate
on:
workflow_dispatch:
inputs:
dryRun:
description: "Dry-Run"
default: false
required: false
type: boolean
logLevel:
description: "Log-Level"
default: "debug"
required: false
schedule:
- cron: "0 * * * *"
push:
branches:
- main
paths:
- ".github/renovate.json5"
- ".github/renovate/**.json"
- ".github/renovate/**.json5"
- ".github/workflows/schedule-renovate.yaml"
2023-05-03 08:23:50 -05:00
jobs:
renovate:
name: Renovate
uses: renovatebot/github-action@v36.0.0
with:
configurationFile: ".github/renovate.json5"
dryRun: ${{ inputs.dryRun || 'false' }}
renovateLogLevel: ${{ inputs.logLevel || 'debug' }}
2023-05-03 08:54:13 -05:00
secrets:
app_id: ${{ secrets.APP_ID }}
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}