23 lines
692 B
YAML
23 lines
692 B
YAML
on:
|
|
schedule:
|
|
- cron: '*/30 * * * *'
|
|
jobs:
|
|
renovate:
|
|
name: Renovate
|
|
runs-on: docker
|
|
container:
|
|
image: ghcr.io/renovatebot/renovate:37.409.1@sha256:6253405cf89432f5ac41d115a000badd6b32e505f24b801bf83218593342f727
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Renovate
|
|
uses: ./.forgejo/actions/renovate
|
|
with:
|
|
endpoint: https://git.hsn.dev/api/v1/
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
github-token: ${{ secrets.GH_TOKEN }}
|
|
args: --platform gitea --autodiscover
|
|
save-cache: true
|