Files
lit-examples/.gitea/workflows/renovate.yml
T
rodydavis 92d1f986ed
Renovate / renovate (push) Successful in 1m43s
Build and Deploy / build-and-deploy (push) Successful in 5m0s
ci: limit renovate workflow concurrency to one at a time
2026-06-26 20:05:28 -07:00

28 lines
676 B
YAML

name: Renovate
on:
schedule:
- cron: "0 * * * *" # Triggers hourly
push:
branches:
- master
workflow_dispatch: # Allows manual triggering from the Gitea UI
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
renovate:
runs-on: ubuntu-latest
container:
image: ghcr.io/renovatebot/renovate:latest
env:
RENOVATE_PLATFORM: gitea
RENOVATE_ENDPOINT: https://git.rodydavis.dev/api/v1
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_AUTODISCOVER: false
RENOVATE_REPOSITORIES: ${{ github.repository }}
steps:
- name: Run Renovate
run: renovate