Skip to content

Commit

Permalink
chore(Renovate): update config
Browse files Browse the repository at this point in the history
  • Loading branch information
simonknittel committed Dec 19, 2024
1 parent 0726103 commit 586c862
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Renovate

on:
schedule:
- cron: "0,30 6 * * *" # Every day twice in order to raise and merge PRs for security patches
- cron: "0 0,6,12,18 * * *"
workflow_dispatch: # Manually run the workflow
push: # Run the workflow on changes to the configuration
branches:
Expand All @@ -21,7 +21,7 @@ jobs:
uses: actions/checkout@v4.2.2

- name: Self-hosted Renovate
uses: renovatebot/github-action@v40.3.4
uses: renovatebot/github-action@v41.0.6
with:
configurationFile: .github/renovate-config.js
token: ${{ secrets.RENOVATE_TOKEN }}
Expand Down
22 changes: 17 additions & 5 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":semanticCommits", ":dependencyDashboard"],
"extends": [
"config:recommended",
":semanticCommits",
":dependencyDashboard"
],
"packageRules": [
{
"groupName": "Patch Tuesday",
"groupSlug": "patch-tuesday",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"automerge": true,
"minimumReleaseAge": "7 days",
"internalChecksFilter": "strict",
"schedule": ["before 7am on Tuesday"],
"schedule": [
"before 7am on Tuesday"
],
"matchPackageNames": [
"*",
"!@biomejs/biome",
"!postgres"
"!postgres",
"!eslint-plugin-react-compiler",
"!@biomejs/biome"
]
}
],
Expand Down

0 comments on commit 586c862

Please sign in to comment.