Skip to content

Commit 646704e

Browse files
authored
Run GitHub actions on merging. (#830)
1 parent 971af7d commit 646704e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build-cpu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env:
3030

3131
jobs:
3232
build-cpu:
33-
if: ${{ github.event.label.name == 'ready' }}
33+
if: github.event.label.name == 'ready' || github.event_name == 'push'
3434
runs-on: ${{ matrix.os }}
3535
strategy:
3636
fail-fast: false

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env:
3030

3131
jobs:
3232
build:
33-
if: ${{ github.event.label.name == 'ready' }}
33+
if: github.event.label.name == 'ready' || github.event_name == 'push'
3434
runs-on: ${{ matrix.os }}
3535
strategy:
3636
fail-fast: false

.github/workflows/run-tests-cpu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727

2828
jobs:
2929
run-tests-cpu:
30-
if: ${{ github.event.label.name == 'ready' }}
30+
if: github.event.label.name == 'ready' || github.event_name == 'push'
3131
runs-on: ${{ matrix.os }}
3232
strategy:
3333
fail-fast: false

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727

2828
jobs:
2929
run-tests:
30-
if: ${{ github.event.label.name == 'ready' }}
30+
if: github.event.label.name == 'ready' || github.event_name == 'push'
3131
runs-on: ${{ matrix.os }}
3232
strategy:
3333
fail-fast: false

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env:
3030
jobs:
3131
build-windows:
3232
# see https://github.com/actions/virtual-environments/blob/win19/20210525.0/images/win/Windows2019-Readme.md
33-
if: ${{ github.event.label.name == 'ready' }}
33+
if: github.event.label.name == 'ready' || github.event_name == 'push'
3434
runs-on: ${{ matrix.os }}
3535
strategy:
3636
fail-fast: false

0 commit comments

Comments
 (0)