manual-test-kgw #1
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: kwil-db-branch and kgw-branch. | |
name: manual-test-kgw | |
on: | |
workflow_dispatch: | |
inputs: | |
kwil-db-branch: | |
description: 'kwil-db branch to be tested' | |
required: true | |
type: string | |
kgw-branch: | |
description: 'kgw branch to be tested' | |
required: true | |
type: string | |
jobs: | |
kgw-test: | |
uses: ./.github/workflows/kgw-test-reuse.yaml | |
with: | |
kwil-db-branch: ${{ github.event.inputs.kwil-db-branch }} | |
kgw-branch: ${{ github.event.inputs.kgw-branch }} | |
secrets: | |
kgw-access-token: ${{ secrets.KGW_MACH_SECRET_FOR_KWILDB }} |