24 lines
596 B
YAML
24 lines
596 B
YAML
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
|
|
uses: actions/checkout@v6.0.1
|
|
- name: Run Renovate
|
|
uses: renovatebot/github-action@8b7941943a108b2cc2150730963164aa8baeab8c # v44.2.2
|
|
with:
|
|
configurationFile: renovate.json
|
|
token: ${{ github.token }}
|
|
env:
|
|
RENOVATE_REPOSITORIES: '["pooneyy/1Panel-Appstore"]' |