mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-27 00:24:14 +01:00
Only trigger CI builds on labelled PRs
We only want to run CI builds once they've been assigned the `ci` label. This allows more direct control over when PRs are built.
This commit is contained in:
parent
a0539a3edb
commit
48d2b3bf07
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
@ -4,6 +4,7 @@ on: [ push, pull_request ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: github.event.type != 'PullRequestEvent' || contains(github.event.pull_request.labels.*.name, 'ci')
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
JVM_OPTS: -Xmx6G
|
||||
|
Loading…
Reference in New Issue
Block a user