renovate-cronjob/.forgejo/workflows/renovate.yaml

23 lines
447 B
YAML
Raw Normal View History

2024-02-02 12:02:59 +01:00
name: renovate
on:
push:
branches:
- main
# need a run for automerge
- 'renovate/**'
2024-02-02 12:02:59 +01:00
schedule:
2024-03-12 21:26:56 +00:00
- cron: "*/30 * * * *"
2024-02-02 12:02:59 +01:00
jobs:
renovate:
runs-on: docker
container:
image: ghcr.io/renovatebot/renovate:38.0
2024-02-02 12:02:59 +01:00
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
2024-03-28 22:24:43 +01:00
GITHUB_COM_TOKEN: ${{ secrets.GIT_HUB_COM_TOKEN }}