From 8c2913045349e7b76286523cb30d9d16ff1b5586 Mon Sep 17 00:00:00 2001 From: Shailesh Parmar Date: Tue, 28 May 2024 16:51:53 +0530 Subject: [PATCH] minor: playwright mysql workflow (#16439) * minor: playwright mysql workflow * addressing comment --- .github/workflows/playwright-mysql-e2e.yml | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/playwright-mysql-e2e.yml diff --git a/.github/workflows/playwright-mysql-e2e.yml b/.github/workflows/playwright-mysql-e2e.yml new file mode 100644 index 00000000000..f434017080a --- /dev/null +++ b/.github/workflows/playwright-mysql-e2e.yml @@ -0,0 +1,44 @@ +# Copyright 2021 Collate +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created +# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path + +name: MySQL PR Playwright E2E Tests +on: + workflow_dispatch: + pull_request_target: + types: + - labeled + - opened + - synchronize + - reopened + - ready_for_review + path-ignore: + - openmetadata-doc/** + - .github/** + - openmetadata-dist/** + - docker/** + +permissions: + contents: read + +concurrency: + group: playwright-ci-pr-mysql-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + playwright-ci-mysql: + runs-on: ubuntu-latest + environment: test + steps: + - name: Test + run: echo "Test"