From 000fd14e64cb202db474a11149571eb1ba2f0b75 Mon Sep 17 00:00:00 2001 From: Kai Ninomiya Date: Fri, 11 Aug 2023 02:26:50 -0700 Subject: [PATCH] Only trigger WPT Lint test on pull_request (#2889) Previously it was run every time a branch other than wpt-lint was pushed (including on branches in contributors' forks). This doesn't really achieve anything. (We could run it on main to make sure main stays green, but all that really matters is that PRs can be landed.) Issue: none --- .github/workflows/wpt.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/wpt.yml b/.github/workflows/wpt.yml index c74d6c5b4f92..4c7299075fc2 100644 --- a/.github/workflows/wpt.yml +++ b/.github/workflows/wpt.yml @@ -1,8 +1,6 @@ name: WPT Lint Test on: - push: - branches-ignore: [gh-pages] pull_request: branches: [main] workflow_dispatch: @@ -26,4 +24,3 @@ jobs: - name: test wpt lint run: ./wpt lint working-directory: ./wpt -