manual-test-kgw #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# manual-test-kgw.yaml run kgw-test with manual inputs: kdb-ref, kgw-ref and kjs-ref. | |
name: manual-test-kgw | |
on: | |
workflow_dispatch: | |
inputs: | |
kdb-ref: | |
description: 'kwil-db branch/tag/SHA to be tested' | |
required: true | |
type: string | |
kgw-ref: | |
description: 'kgw branch/tag/SHA to be tested' | |
required: true | |
type: string | |
kjs-ref: | |
description: 'kwil-js branch/tag/SHA to be tested' | |
required: true | |
type: string | |
default: 'main' | |
jobs: | |
kgw-test-manual: | |
name: Run manual KGW test | |
uses: ./.github/workflows/kgw-test-reuse.yaml | |
with: | |
kdb-ref: ${{ github.event.inputs.kdb-ref }} | |
kgw-ref: ${{ github.event.inputs.kgw-ref }} | |
kjs-ref: ${{ github.event.inputs.kjs-ref }} | |
secrets: | |
kgw-access-token: ${{ secrets.KGW_MACH_SECRET_FOR_KWILDB }} |