Skip to content

Commit

Permalink
Add renovate github action
Browse files Browse the repository at this point in the history
Fixes #7
  • Loading branch information
Jasper-Ben committed Aug 1, 2023
1 parent 1b1511a commit 63c3a5e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Renovate
on:
schedule:
- cron: '0 10 * * *'
workflow_dispatch:

env:
RENOVATE_VERSION: 36.25.5-full # renovate: datasource=docker depName=renovate packageName=ghcr.io/renovatebot/renovate
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: set-env-vars
run: |
echo "RENOVATE_REPOSITORIES=['${GITHUB_REPOSITORY}']" >> "$GITHUB_ENV"
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
with:
renovate-version: ${{ env.RENOVATE_VERSION }}
token: ${{ secrets.RENOVATE_TOKEN }}
env:
RENOVATE_REVIEWERS: "['jasper-ben', 'martin31821']"
RENOVATE_PR_CONCURRENT_LIMIT: "0"
RENOVATE_PR_HOURLY_LIMIT: "0"
RENOVATE_FORK_PROCESSING: "enabled"

0 comments on commit 63c3a5e

Please sign in to comment.