21 lines
605 B
YAML
21 lines
605 B
YAML
name: renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "@hourly"
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
container: ghcr.io/renovatebot/renovate:latest@sha256:e09f71019881fff15f397560d979736c6c6fd712f790fdb0a75697a324ee965a
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
|
|
- run: renovate
|
|
env:
|
|
RENOVATE_CONFIG_FILE: "/workspace/renovate-bot/renovate-config/config.js"
|
|
LOG_LEVEL: "debug"
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
GITHUB_COM_TOKEN: ${{ secrets.GH_COM_TOKEN }} |