Files
teatea/.github/workflows/renovate.yaml
ssig33 909a19af43
Some checks failed
CI / test (push) Successful in 13s
Renovate / renovate (push) Has been cancelled
update .github/workflows/renovate.yaml, renovate.json
2025-11-15 16:04:30 +09:00

29 lines
666 B
YAML

name: Renovate
on:
schedule:
# Daily at midnight
- cron: '0 0 * * *'
workflow_dispatch:
push:
branches:
- main
env:
GITHUB_COM_TOKEN: ${{ secrets.SECRET_GITHUB_COM_TOKEN }}
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: setup node
uses: actions/setup-node@v3
with:
node-version: '24'
- run: npm install -g renovate
- name: Run Renovate
run: renovate --token=${{ secrets.THIS_TOKEN }} --endpoint=https://gitea.ssig33.com --platform=gitea --autodiscover --autodiscover-filter ${{ github.repository }}