Skip to content

Commit

Permalink
build: add renovate bot workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Oct 25, 2024
1 parent eb7c275 commit 6e33e0a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Renovate

on:
schedule:
- cron: "0 0 * * MON"

jobs:
renovate:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
with:
token: ${{ secrets.RENOVATE_PATH }}
configurationFile: renovate.json
env:
RENOVATE_REPOSITORIES: ${{ github.repository }}
LOG_LEVEL: info
RENOVATE_ONBOARDING: false
6 changes: 6 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"branchPrefix": "renovate/",
"pinDigests": false,
"prHourlyLimit": 20,
"labels": ["global", "dependencies"]
}

0 comments on commit 6e33e0a

Please sign in to comment.