2024-07-17 16:30:13 +08:00
|
|
|
name: Renovate
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2024-08-12 16:09:06 +08:00
|
|
|
- cron: "0 * * * *"
|
2024-07-17 16:30:13 +08:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
manual-trigger:
|
|
|
|
description: 'Manually trigger Renovate'
|
|
|
|
default: ''
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
renovate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-10-24 00:10:14 +08:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-07-17 16:30:13 +08:00
|
|
|
- name: Run Renovate
|
2024-11-04 18:26:25 +08:00
|
|
|
uses: renovatebot/github-action@28bcd5c4900a4353b5c9af9e1bd61dd6377f0f0d # v40.3.5
|
2024-07-17 16:30:13 +08:00
|
|
|
with:
|
|
|
|
useSlim: false
|
|
|
|
token: ${{ secrets.GITHUBTOKEN }}
|