Skip to content

Commit

Permalink
add renovate workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
  • Loading branch information
ziegenberg committed Oct 19, 2022
1 parent 163759e commit 287c25a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"branchPrefix": "test-renovate/",
"onboardingConfig": { "extends": ["config:base"] },
"onboarding": true,
"requireConfig": "optional",
"platform": "github",
"includeForks": true,
"repositories": ["ziegenberg/opencast"]
}
20 changes: 20 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Renovate

on:
schedule:
- cron: '0/15 * * * *'
workflow_dispatch:


jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Self-hosted Renovate
uses: renovatebot/github-action@v32.238.4
with:
configurationFile: .github/renovate.json
token: ${{ secrets.RENOVATE_TOKEN }} # Needs the `repo:public_repo` scope

0 comments on commit 287c25a

Please sign in to comment.