1
0
Fork 0
This repository has been archived on 2024-01-21. You can view files and clone it, but cannot push or open issues or pull requests.
renovate-gh-workflow-contai.../.gitea/workflows/renovate.yml

30 lines
807 B
YAML
Raw Permalink Normal View History

2024-01-21 10:01:14 +01:00
name: renovate
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate@sha256:e21ca1043a6fd060fb58947b2981dae7a1dcd35ec03acf8b4e89ceacdcd2b062 # 37.140.10
steps:
- name: Checkout
2024-01-21 10:04:21 +01:00
uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # 4.0.0
2024-01-21 10:01:14 +01:00
- name: Renovate
run: renovate
env:
LOG_LEVEL: "debug"
RENOVATE_CONFIG_FILE: "${{ github.workspace }}/renovate.json"
RENOVATE_ENDPOINT: https://git.keine.cloud/api/v1
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_REPOSITORIES: ${{ format('["{0}"]', github.repository) }}
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}