Skip to content

Commit

Permalink
Add Renovate GitHub Action workflow
Browse files Browse the repository at this point in the history
Introduce a new GitHub Action workflow to automate dependency updates using Renovate. This setup includes a scheduled job and a configuration file for managing and tracking dependencies via the Dependency Dashboard.
  • Loading branch information
Spomky committed Nov 21, 2024
1 parent 69d35b4 commit 46822b6
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/renovate-global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"branchPrefix": "github-renovate/",
"dependencyDashboardTitle": "Dependency Dashboard self-hosted",
"gitAuthor": "Renovate Bot <[email protected]>",
"onboarding": true,
"onboardingBranch": "github-renovate/configure",
"platform": "github",
"repositories": []
}
17 changes: 17 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Renovate
on:
schedule:
# The "*" (#42, asterisk) character has special semantics in YAML, so this
# string has to be quoted.
- cron: '0/15 * * * *'
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Renovate Bot GitHub Action
uses: renovatebot/[email protected]
with:
configurationFile: .github/renovate-global.json
token: ${{ secrets.RENOVATE_TOKEN }}

0 comments on commit 46822b6

Please sign in to comment.