mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-25 11:01:56 +01:00
18 lines
424 B
YAML
18 lines
424 B
YAML
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 8 * * *"
|
||
|
workflow_dispatch:
|
||
|
name: Renovate Daily Job
|
||
|
jobs:
|
||
|
renovate:
|
||
|
name: Renovate
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@master
|
||
|
- name: Self-hosted Renovate
|
||
|
uses: renovatebot/github-action@v32.238.4
|
||
|
with:
|
||
|
configurationFile: .github/renovate-config.js
|
||
|
token: ${{ secrets.RENOVATE_TOKEN }}
|