Skip to content

Commit 5b61136

Browse files
author
Jim Ryan
committed
add plus jwt to github actions
1 parent ea7652a commit 5b61136

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/actions/smoke-tests/action.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ inputs:
3434
registry-token:
3535
description: JWT token for accessing container registry
3636
required: false
37+
plus-jwt:
38+
description: JWT for NGINX Plus
39+
required: false
3740

3841
outputs:
3942
test-results-name:
@@ -101,6 +104,7 @@ runs:
101104
--durations=10 \
102105
--show-ic-logs=yes \
103106
--ad-secret=${{ inputs.azure-ad-secret }} \
107+
--plus-jwt=${{ inputs.plus-jwt }} \
104108
-m ${{ inputs.marker != '' && inputs.marker || '""' }}
105109
working-directory: ./tests
106110
shell: bash

.github/workflows/regression.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ jobs:
278278
azure-ad-secret: ${{ secrets.AZURE_AD_AUTOMATION }}
279279
registry-token: ${{ steps.auth.outputs.access_token }}
280280
test-image: "gcr.io/f5-gcs-7899-ptg-ingrss-ctlr/dev/test-runner:${{ hashFiles('./tests/requirements.txt', './tests/Dockerfile') || 'latest' }}"
281+
plus-jwt: ${{ secrets.PLUS_JWT }}
281282

282283
- name: Upload Test Results
283284
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3

.github/workflows/setup-smoke.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ jobs:
165165
azure-ad-secret: ${{ secrets.AZURE_AD_AUTOMATION }}
166166
registry-token: ${{ steps.auth.outputs.access_token }}
167167
test-image: "gcr.io/f5-gcs-7899-ptg-ingrss-ctlr/dev/test-runner:${{ hashFiles('./tests/requirements.txt', './tests/Dockerfile') || 'latest' }}"
168+
plus-jwt: ${{ secrets.PLUS_JWT }}
169+
168170
if: ${{ steps.stable_exists.outputs.exists != 'true' }}
169171

170172
- name: Upload Test Results

.github/workflows/single-image-regression.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,4 @@ jobs:
109109
azure-ad-secret: ${{ secrets.AZURE_AD_AUTOMATION }}
110110
registry-token: ${{ steps.auth.outputs.access_token }}
111111
test-image: "gcr.io/f5-gcs-7899-ptg-ingrss-ctlr/dev/test-runner:${{ inputs.test-image-tag }}"
112+
plus-jwt: ${{ secrets.PLUS_JWT }}

0 commit comments

Comments
 (0)