Skip to content

Commit 34194c7

Browse files
committed
fix typo
1 parent b65a0a3 commit 34194c7

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/api-deployer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ on:
6060
description: Oauth client id part of the authorization for the operations API
6161
required: true
6262
type: string
63-
SKIP_TEST:
63+
SKIP_TESTS:
6464
description: The skip test parameter is useful for DEV environment deployments, not advised for QA and PROD.
6565
required: false
6666
type: boolean
@@ -80,7 +80,7 @@ jobs:
8080
uses: ./.github/workflows/build-test.yml
8181
name: Build & Test
8282
with:
83-
SKIP_TEST: ${{ inputs.SKIP_TEST }}
83+
SKIP_TESTS: ${{ inputs.SKIP_TESTS }}
8484

8585
create-artifact-repo:
8686
runs-on: ubuntu-latest

.github/workflows/api-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
TF_APPLY: true
2424
VALIDATOR_ENDPOINT: https://stg-gtfs-validator-web-mbzoxaljzq-ue.a.run.app
2525
OPERATIONS_OAUTH2_CLIENT_ID_1PASSWORD: "op://rbiv7rvkkrsdlpcrz3bmv7nmcu/GCP_RETOOL_OAUTH2_CREDS/username"
26-
SKIP_TEST: true
26+
SKIP_TESTS: true
2727
secrets:
2828
GCP_MOBILITY_FEEDS_SA_KEY: ${{ secrets.DEV_GCP_MOBILITY_FEEDS_SA_KEY }}
2929
OAUTH2_CLIENT_ID: ${{ secrets.DEV_MOBILITY_FEEDS_OAUTH2_CLIENT_ID}}

.github/workflows/build-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- ".github/workflows/web-*.yml"
1010
workflow_call:
1111
inputs:
12-
SKIP_TEST:
12+
SKIP_TESTS:
1313
description: The skip test parameter is useful for DEV environment deployments, not advised for QA and PROD.
1414
required: false
1515
type: boolean
@@ -18,7 +18,7 @@ on:
1818
env:
1919
python_version: '3.11'
2020
java_version: '11' # needed by setup-openapi-generator.sh
21-
SKIP_TESTS: ${{ inputs.SKIP_TEST || false }}
21+
SKIP_TESTS: ${{ github.event_name == 'workflow_call' && inputs.SKIP_TESTS || false }}
2222

2323
jobs:
2424
build-test:

0 commit comments

Comments
 (0)