From 53d96eda78e1fd974d5fc3a9076a9c097926ab54 Mon Sep 17 00:00:00 2001 From: Rakshith B <79500257+Rakshithb1@users.noreply.github.com> Date: Tue, 13 Aug 2024 12:42:48 +0530 Subject: [PATCH] [DSD-5765] added browserstack-web.yml Signed-off-by: Rakshith B <79500257+Rakshithb1@users.noreply.github.com> --- .github/workflows/browserstack-web.yml | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/browserstack-web.yml diff --git a/.github/workflows/browserstack-web.yml b/.github/workflows/browserstack-web.yml new file mode 100644 index 00000000..0fb3ea63 --- /dev/null +++ b/.github/workflows/browserstack-web.yml @@ -0,0 +1,29 @@ +name: BrowserStack Web Tests + +on: + workflow_dispatch: + inputs: + message: + description: 'Message for manually triggering' + required: false + default: 'Triggered for Updates' + type: string + push: + branches: + - '!release-branch' + - release* + - master + - 1.* + - develop + + +jobs: + inji-verify-test: + uses: mosip/kattu/.github/workflows/browserstack-web.yml@master-java21 + with: + SERVICE_LOCATION: ui-test + BUILD_ARTIFACT: test-output + secrets: + BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} + BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} +