mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 00:26:55 +08:00
26 lines
502 B
YAML
26 lines
502 B
YAML
|
name: Renovate
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 0 * * *"
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
workflow_dispatch:
|
||
|
inputs:
|
||
|
manual-trigger:
|
||
|
description: 'Manually trigger Renovate'
|
||
|
default: ''
|
||
|
|
||
|
jobs:
|
||
|
renovate:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3.3.0
|
||
|
- name: Run Renovate
|
||
|
uses: renovatebot/github-action@v38.1.0
|
||
|
with:
|
||
|
useSlim: false
|
||
|
token: ${{ secrets.GITHUBTOKEN }}
|