Skip to content

Commit e8f67d8

Browse files
authored
Remove unused workflow input parameter (#13312)
1 parent bf9e24d commit e8f67d8

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

.github/workflows/build-common.yml

-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,6 @@ jobs:
310310
-Porg.gradle.java.installations.paths=${{ steps.setup-test-java.outputs.path }}
311311
-Porg.gradle.java.installations.auto-download=false
312312
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
313-
${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
314313
315314
- name: Build scan
316315
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}

.github/workflows/reusable-test-indy.yml

-4
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ on:
99
no-build-cache:
1010
type: boolean
1111
required: false
12-
max-test-retries:
13-
type: string
14-
required: false
1512
secrets:
1613
FLAKY_TEST_REPORTER_ACCESS_KEY:
1714
required: false
@@ -82,7 +79,6 @@ jobs:
8279
${{ env.test-tasks }}
8380
-PtestIndy=true
8481
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
85-
${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
8682
8783
- name: Build scan
8884
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}

.github/workflows/reusable-test-latest-deps.yml

-4
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ on:
99
no-build-cache:
1010
type: boolean
1111
required: false
12-
max-test-retries:
13-
type: string
14-
required: false
1512
secrets:
1613
FLAKY_TEST_REPORTER_ACCESS_KEY:
1714
required: false
@@ -80,7 +77,6 @@ jobs:
8077
${{ env.test-tasks }}
8178
-PtestLatestDeps=true
8279
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
83-
${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
8480
8581
- name: Build scan
8682
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}

0 commit comments

Comments
 (0)