Skip to content

Commit

Permalink
fix(renovate): add release branches to renovate (#3924)
Browse files Browse the repository at this point in the history
* fix(renovate): This fixes renovate to also autoMerge fixes to our release branches so we don't have to cherry-pick them.

* fix(renovate): run config validator on release branches too
  • Loading branch information
GenPage committed Nov 6, 2023
1 parent 4cea3b9 commit 1102224
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
commitMessageSuffix: " in {{packageFile}}",
dependencyDashboardAutoclose: true,
automerge: true,
baseBranches: ["main", "/^release\-.*/"],
platformAutomerge: true,
labels: ["dependencies"],
postUpdateOptions: [
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/renovate-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ on:
- '.github/renovate.json5'
branches:
- main
- 'releases-**'
pull_request:
paths:
- '.github/renovate.json5'
workflow_dispatch:

jobs:
validate:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
Expand Down

0 comments on commit 1102224

Please sign in to comment.