Don't build on label operatrions

This commit is contained in:
Simon Walton 2019-12-10 09:34:47 -08:00
parent 2be70c1b17
commit 10d3bdde74

View file

@ -2,7 +2,7 @@ name: Pull Request CI Build
on:
pull_request:
types: [opened, synchronize, reopened, labeled]
types: [opened, synchronize, reopened]
env:
APP_NAME: interface
@ -25,7 +25,6 @@ env:
jobs:
build_full_mac:
runs-on: macOS-latest
if: github.event.action != 'labeled' || github.event.label.name == 'rebuild-mac' || github.event.label.name == 'rebuild'
steps:
- uses: actions/checkout@v1
with:
@ -54,7 +53,6 @@ jobs:
build_full_win32:
runs-on: windows-latest
if: github.event.action != 'labeled' || github.event.label.name == 'rebuild-win' || github.event.label.name == 'rebuild'
steps:
- uses: actions/checkout@v1
with:
@ -89,7 +87,6 @@ jobs:
build_full_linux:
runs-on: ubuntu-latest
if: github.event.action != 'labeled' || github.event.label.name == 'rebuild-linux' || github.event.label.name == 'rebuild'
steps:
- uses: actions/checkout@v1
with: