mirror of
https://github.com/cryptomator/cryptomator.git
synced 2024-11-23 12:09:45 +00:00
Skip release tests too when ci-skip provided in commit message
This commit is contained in:
parent
45c2dd0358
commit
b10d892b12
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@ -16,7 +16,8 @@ jobs:
|
||||
release-check-precondition:
|
||||
name: Validate pushed commit to release/hotfix branch or pushed tag
|
||||
runs-on: ubuntu-latest
|
||||
if: startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/hotfix/') || startsWith(github.ref, 'refs/heads/release/')
|
||||
if: "(startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/hotfix/') || startsWith(github.ref, 'refs/heads/release/')) && \
|
||||
!(contains(github.event.head_commit.message, '[ci skip]') || contains(github.event.head_commit.message, '[skip ci]'))"
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- id: validate-pom-version
|
||||
@ -47,7 +48,9 @@ jobs:
|
||||
name: Compile and Test
|
||||
needs: release-check-precondition
|
||||
runs-on: ubuntu-latest
|
||||
if: "always() && (needs.release-check-precondition.result=='success' || needs.release-check-precondition.result=='skipped') && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
|
||||
if: "always() && \
|
||||
(needs.release-check-precondition.result=='success' || needs.release-check-precondition.result=='skipped') && \
|
||||
!(contains(github.event.head_commit.message, '[ci skip]') || contains(github.event.head_commit.message, '[skip ci]'))"
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-java@v2
|
||||
|
Loading…
Reference in New Issue
Block a user