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