Skip to content

Commit d665aa9

Browse files
authored
Automatically merge minor and patch upgrades
Currently the test action is configured to only run on pull requests. This means Renovate had to make #360 to see if the change it wanted to make would pass. Renovate works best when it can quietly upgrade minor and patch changes when there is a passing build. This requires running the CI jobs for pushes to `renovate/**` branches. By enabling builds on pushes to `renovate/**` Renovate can quietly do it's work. Additionally building any pushes to `main` will ensure that if multiple MR's cross each other when being merged, the build status for each will be known making it easier to isolate problems.
1 parent 4f43f74 commit d665aa9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
name: Cucumber Scala CI
22

33
on:
4+
workflow_call:
45
pull_request:
56
branches:
6-
- main
7-
workflow_call: {}
7+
- main
8+
push:
9+
branches:
10+
- main
11+
- renovate/**
812

913
jobs:
1014
build:

0 commit comments

Comments
 (0)