-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create command stub * sanity * format check is failing for some reason
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Test Connector Performance | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
connector: | ||
description: "Airbyte Connector" | ||
required: true | ||
repo: | ||
description: "Repo to check out code from. Defaults to the main airbyte repo. Set this when building connectors from forked repos." | ||
required: false | ||
default: "airbytehq/airbyte" | ||
gitref: | ||
description: "The git ref to check out from the specified repository." | ||
required: false | ||
default: master | ||
comment-id: | ||
description: "The comment-id of the slash command. Used to update the comment with the status." | ||
required: false | ||
uuid: | ||
description: "Custom UUID of workflow run. Used because GitHub dispatches endpoint does not return workflow run id." | ||
required: false | ||
connector-acceptance-test-version: | ||
description: "Set a specific connector acceptance test version to use. Enter 'dev' to test, build and use a local version of Connector Acceptance Test." | ||
required: false | ||
default: "latest" | ||
local_cdk: | ||
description: "Run Connector Acceptance Tests against the CDK version on the current branch." | ||
required: false | ||
jobs: | ||
Stub: | ||
runs-on: ubuntu-latest | ||
step: | ||
- run: echo "Test Connector Performance stub" |