CI: Add “master” branch-name check to “push” triggers

This commit is contained in:
sideshowbarker 2026-05-29 21:17:49 +09:00 committed by Jelle Raaijmakers
parent 42c9fcf88f
commit d089def7e4
4 changed files with 16 additions and 4 deletions

View file

@ -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) }}

View file

@ -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) }}

View file

@ -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) }}

View file

@ -1,6 +1,9 @@
name: Lint Code
on: [ push, pull_request ]
on:
push:
branches: [master]
pull_request:
jobs:
lint: