2023-06-01 22:52:51 +08:00
|
|
|
name: Renovate
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * *"
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
manual-trigger:
|
|
|
|
description: 'Manually trigger Renovate'
|
|
|
|
default: ''
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
renovate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-10-18 17:30:15 +08:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-06-01 22:52:51 +08:00
|
|
|
- name: Run Renovate
|
2023-12-19 12:04:49 +08:00
|
|
|
uses: renovatebot/github-action@b93d7e432be4d7ad29452a9a058aa130220e8819 # v39.2.2
|
2023-06-01 22:52:51 +08:00
|
|
|
with:
|
|
|
|
useSlim: false
|
|
|
|
token: ${{ secrets.GITHUBTOKEN }}
|