mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2026-04-01 20:55:38 +02:00
24 lines
491 B
YAML
24 lines
491 B
YAML
name: Renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 */12 * * *" # every 6 hours
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: renovatebot/github-action@v44.2.5
|
|
with:
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
env:
|
|
RENOVATE_REPOSITORIES: ${{ github.repository }}
|
|
LOG_LEVEL: debug
|
|
RENOVATE_PRINT_CONFIG: "true"
|