CI: Add “master” branch-name check to “push” triggers
This commit is contained in:
parent
42c9fcf88f
commit
d089def7e4
4 changed files with 16 additions and 4 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -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) }}
|
||||
|
|
|
|||
5
.github/workflows/flatpak.yml
vendored
5
.github/workflows/flatpak.yml
vendored
|
|
@ -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) }}
|
||||
|
|
|
|||
5
.github/workflows/libjs-test262.yml
vendored
5
.github/workflows/libjs-test262.yml
vendored
|
|
@ -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) }}
|
||||
|
|
|
|||
5
.github/workflows/lint-code.yml
vendored
5
.github/workflows/lint-code.yml
vendored
|
|
@ -1,6 +1,9 @@
|
|||
name: Lint Code
|
||||
|
||||
on: [ push, pull_request ]
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
|
|||
Loading…
Reference in a new issue