We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4f9ca commit 3a8bdbdCopy full SHA for 3a8bdbd
.github/workflows/maven-verify.yml
@@ -9,7 +9,7 @@ on:
9
10
jobs:
11
build-main:
12
- if: github.base_ref == 'main'
+ if: github.event.pull_request.base_ref == 'main'
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v4
@@ -21,7 +21,7 @@ jobs:
21
- name: Build with Maven
22
run: mvn -B -ntp -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn clean verify
23
build-release-3:
24
- if: github.base_ref == 'release-3'
+ if: github.event.pull_request.base_ref == 'release-3'
25
26
27
0 commit comments