mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-06 18:57:26 +01:00
skip ci in commit message condition check (#3902)
* skip ci condition check * always Validate Gradle Wrapper * naming workflow jobs
This commit is contained in:
parent
e637f22540
commit
6aea0f48ed
15
.github/workflows/build_check.yml
vendored
15
.github/workflows/build_check.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: Build check
|
||||
name: CI
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
@ -7,7 +7,8 @@ on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
check_wrapper:
|
||||
name: Validate Gradle Wrapper
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
@ -17,6 +18,16 @@ jobs:
|
||||
- name: Validate Gradle Wrapper
|
||||
uses: gradle/wrapper-validation-action@v1
|
||||
|
||||
build:
|
||||
name: Build app
|
||||
needs: check_wrapper
|
||||
if: "!startsWith(github.event.head_commit.message, '[SKIP CI]')"
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Clone repo
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up JDK 1.8
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
|
Loading…
Reference in New Issue
Block a user