From 02b847ae36326f891be8149b402b0986452d0404 Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Mon, 1 Jun 2026 22:20:20 +0100 Subject: [PATCH] devops: remove trigger_tests workflow - android and docker tests are now in playwright repo; - debian tests are now run on browser builds instead of playwright commits. --- .github/workflows/trigger_tests.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/trigger_tests.yml diff --git a/.github/workflows/trigger_tests.yml b/.github/workflows/trigger_tests.yml deleted file mode 100644 index 761c11f395dcb..0000000000000 --- a/.github/workflows/trigger_tests.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: "Internal Tests" - -on: - push: - branches: - - main - - release-* - -jobs: - trigger: - name: "trigger" - runs-on: ubuntu-24.04 - steps: - - uses: actions/create-github-app-token@v3 - id: app-token - with: - app-id: ${{ vars.PLAYWRIGHT_APP_ID }} - private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }} - repositories: playwright-browsers - - run: | - curl -X POST \ - -H "Accept: application/vnd.github.v3+json" \ - -H "Authorization: token ${GH_TOKEN}" \ - --data "{\"event_type\": \"playwright_tests\", \"client_payload\": {\"ref\": \"${GITHUB_SHA}\"}}" \ - https://api.github.com/repos/microsoft/playwright-browsers/dispatches - env: - GH_TOKEN: ${{ steps.app-token.outputs.token }}