mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-25 02:51:57 +01:00
🚀 Add renovate
This commit is contained in:
parent
9f02a6058e
commit
a73132843f
26
.github/renovate-config.js
vendored
Normal file
26
.github/renovate-config.js
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
module.exports = {
|
||||||
|
branchPrefix: 'renovate/',
|
||||||
|
username: 'renovate-release',
|
||||||
|
gitAuthor: 'Renovate Bot <bot@renovateapp.com>',
|
||||||
|
onboarding: true,
|
||||||
|
platform: 'github',
|
||||||
|
includeForks: false,
|
||||||
|
repositories: [
|
||||||
|
'manuel-rw/jellyfin-discord-music-bot',
|
||||||
|
],
|
||||||
|
packageRules: [
|
||||||
|
{
|
||||||
|
description: 'lockFileMaintenance',
|
||||||
|
matchUpdateTypes: [
|
||||||
|
'pin',
|
||||||
|
'digest',
|
||||||
|
'patch',
|
||||||
|
'minor',
|
||||||
|
'major',
|
||||||
|
'lockFileMaintenance',
|
||||||
|
],
|
||||||
|
dependencyDashboardApproval: false,
|
||||||
|
stabilityDays: 0,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
17
.github/workflows/renovate.yml
vendored
Normal file
17
.github/workflows/renovate.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
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 }}
|
Loading…
Reference in New Issue
Block a user