diff --git a/.github/workflows/reuse-pr-build-test.yaml b/.github/workflows/reuse-pr-build-test.yaml index aa35d59..7593e9d 100644 --- a/.github/workflows/reuse-pr-build-test.yaml +++ b/.github/workflows/reuse-pr-build-test.yaml @@ -59,6 +59,10 @@ on: ] required: true type: string + testflinger-client-id: + description: Testflinger client ID for test job + required: true + type: string secrets: store-credentials: description: Snap Store credentials for publishing PR builds @@ -66,6 +70,9 @@ on: github-token: description: GitHub token used by build pre-check and label operations required: true + testflinger-secret-key: + description: Testflinger secret key for test job + required: true jobs: remove-trigger-labels: @@ -122,7 +129,6 @@ jobs: matrix: jobs: ${{ fromJSON(inputs.test-jobs-matrix) }} uses: canonical/inference-snaps-testing/.github/workflows/test-snap.yaml@v1 - secrets: inherit with: job-queue: ${{ matrix.jobs.job-queue }} provision-data: ${{ matrix.jobs.provision-data }} @@ -137,3 +143,6 @@ jobs: expected-tps: ${{ matrix.jobs.expected-tps }} test-image-prompt: ${{ matrix.jobs.test-image-prompt == true}} devmode: ${{ matrix.jobs.devmode == true }} + testflinger-client-id: ${{ inputs.testflinger-client-id }} + secrets: + testflinger-secret-key: ${{ secrets.testflinger-secret-key }}