mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 20:36:49 +02:00
Don't build on label operatrions
This commit is contained in:
parent
2be70c1b17
commit
10d3bdde74
1 changed files with 1 additions and 4 deletions
5
.github/workflows/pr_build.yml
vendored
5
.github/workflows/pr_build.yml
vendored
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue