The `github-actions` manager should also work for Gitea Actions. It is the same syntax. As per Discord conversation, unpin the Docker digest for Renovate. Signed-off-by: justusbunsi <sk.bunsenbrenner@gmail.com> Reviewed-on: https://gitea.com/gitea/renovate-config/pulls/6 Co-authored-by: justusbunsi <sk.bunsenbrenner@gmail.com> Co-committed-by: justusbunsi <sk.bunsenbrenner@gmail.com>
25 lines
732 B
YAML
25 lines
732 B
YAML
name: renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "@daily"
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
container: ghcr.io/renovatebot/renovate:36.79.1
|
|
steps:
|
|
- uses: https://github.com/actions/checkout@v3
|
|
- run: renovate
|
|
env:
|
|
RENOVATE_CONFIG_FILE: "/workspace/gitea/renovate-config/config.js"
|
|
LOG_LEVEL: "debug"
|
|
RENOVATE_CONFIG_MIGRATION: "true" # ensure all repositories receive config migration PRs
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
HUB_DOCKER_COM_USER: ${{ secrets.HUB_DOCKER_COM_USER }}
|
|
HUB_DOCKER_COM_TOKEN: ${{ secrets.HUB_DOCKER_COM_TOKEN }}
|