Disable JVM on Actions, better triggers (#1262)
This commit is contained in:
parent
5b455cd51b
commit
4a13965a6d
1 changed files with 4 additions and 1 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
|
@ -5,11 +5,14 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
# TODO: Add deploy if needed
|
# TODO: Add deploy if needed
|
||||||
jobs:
|
jobs:
|
||||||
jvm:
|
jvm:
|
||||||
if: "!contains(github.event.head_commit.message, 'skip ci')"
|
if: ${{ false }} # Disabled
|
||||||
|
# if: "!contains(github.event.head_commit.message, 'skip ci')"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
LEIN_ROOT: "true"
|
LEIN_ROOT: "true"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue