29 lines
666 B
YAML
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@v6
|
|
- name: setup node
|
|
uses: actions/setup-node@v6
|
|
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 }}
|