We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b4d0f1 + c9ce39e commit ffa1e9aCopy full SHA for ffa1e9a
2 files changed
.github/workflows/pull-request-approved.yml
@@ -20,4 +20,5 @@ jobs:
20
uses: ./.github/workflows/test-analysis.yml
21
secrets: inherit
22
with:
23
- upload_artifact: false
+ upload_artifact: false
24
+ build: false
.github/workflows/test-analysis.yml
@@ -7,6 +7,11 @@ on:
7
type: boolean
8
required: false
9
default: false
10
+ build:
11
+ type: boolean
12
+ description: "Build the project and upload artifact for testing"
13
+ required: false
14
+ default: true
15
outputs:
16
cache_key:
17
description: "Cache key used for Maven repository"
@@ -19,6 +24,7 @@ jobs:
19
25
build:
26
uses: opencb/java-common-libs/.github/workflows/build-java-app-workflow.yml@develop
27
+ if: {{ inputs.build }}
28
29
needs_hadoop_preparation: false
30
maven_opts: -Dcheckstyle.skip -DCELLBASE.WAR.NAME=cellbase
0 commit comments