From d089def7e404453347f07d2258ceb6d42b162cf7 Mon Sep 17 00:00:00 2001 From: sideshowbarker Date: Fri, 29 May 2026 21:17:49 +0900 Subject: [PATCH] =?UTF-8?q?CI:=20Add=20=E2=80=9Cmaster=E2=80=9D=20branch-n?= =?UTF-8?q?ame=20check=20to=20=E2=80=9Cpush=E2=80=9D=20triggers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 5 ++++- .github/workflows/flatpak.yml | 5 ++++- .github/workflows/libjs-test262.yml | 5 ++++- .github/workflows/lint-code.yml | 5 ++++- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8647e65722..33d750afca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,9 @@ name: CI -on: [push, pull_request] +on: + push: + branches: [master] + pull_request: concurrency: group: ${{ github.workflow }}-${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }} diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index 121dca1655..b30f0f0608 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -1,6 +1,9 @@ name: Flatpak -on: [push, pull_request] +on: + push: + branches: [master] + pull_request: concurrency: group: ${{ github.workflow }}-${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }} diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index 58bd4e7dc2..ed08f8ed0a 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -1,6 +1,9 @@ name: Run test262 and test-wasm -on: [push, pull_request] +on: + push: + branches: [master] + pull_request: concurrency: group: ${{ github.workflow }}-${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }} diff --git a/.github/workflows/lint-code.yml b/.github/workflows/lint-code.yml index c3d34b5422..bb8e2c3252 100644 --- a/.github/workflows/lint-code.yml +++ b/.github/workflows/lint-code.yml @@ -1,6 +1,9 @@ name: Lint Code -on: [ push, pull_request ] +on: + push: + branches: [master] + pull_request: jobs: lint: