renovate-config/.gitea/workflows/renovate.yaml
Jake Hillion cf15471636
All checks were successful
renovate / renovate (push) Successful in 2m7s
add github token and change to hourly runs
2024-04-04 22:02:46 +01:00

22 lines
491 B
YAML

name: renovate
on:
schedule:
- cron: "@hourly"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:37.279.0
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/JakeHillion/renovate-config/config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.GITHUBTOKEN }}