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
|
2024-04-23 16:16:08 +08:00
|
|
|
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
|
2023-06-01 22:52:51 +08:00
|
|
|
- name: Run Renovate
|
2024-04-18 10:36:08 +08:00
|
|
|
uses: renovatebot/github-action@2e021d24483d81e77e0e902d0809adfbfff276fc # v40.1.10
|
2023-06-01 22:52:51 +08:00
|
|
|
with:
|
|
|
|
useSlim: false
|
|
|
|
token: ${{ secrets.GITHUBTOKEN }}
|