Skip to content

Commit

Permalink
Create command stub (#23777)
Browse files Browse the repository at this point in the history
* Create command stub

* sanity

* format check is failing for some reason
  • Loading branch information
rodireich authored Mar 6, 2023
1 parent 95f1989 commit 2359317
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/slash-commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
publish-external
gke-kube-test
run-specific-test
test-connector-performance
static-args: |
repo=${{ steps.getref.outputs.repo }}
gitref=${{ steps.getref.outputs.ref }}
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/test-connector-performance-command.yml
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"

0 comments on commit 2359317

Please sign in to comment.