renovate/.gitea/workflows/renovate.yaml
Simon Cornet d1b7ddfdad
All checks were successful
Renovate Bot / Renovate (push) Successful in 3m2s
[renovate] feat: run now every hour between 6-18
2024-08-28 08:15:27 +02:00

44 lines
933 B
YAML

---
# generic
name: 'Renovate Bot'
on:
schedule:
- cron: '45 6-17 * * *'
push:
branches:
- 'main'
# jobs
jobs:
# renovate
Renovate:
runs-on: 'ubuntu-latest'
container: 'ghcr.io/renovatebot/renovate:38.56.0'
steps:
# checkout code
- name: 'Clone repo'
uses: 'actions/checkout@v4'
# run renovate
- name: 'Run Renovate'
run: 'renovate'
env:
# generic
LOG_LEVEL: 'info'
# renovate -> github
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
# renovate -> gitea
RENOVATE_USERNAME: 'renovate'
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_PLATFORM: 'gitea'
RENOVATE_ENDPOINT: 'https://git.simoncor.net/api/v1'
RENOVATE_GIT_URL: 'endpoint'
RENOVATE_GIT_AUTHOR: 'Renovate Bot <renovate@simoncor.net>'
RENOVATE_AUTODISCOVER: true