Skip to content

Commit

Permalink
Release v19.03.7-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
khs1994 committed Feb 5, 2020
1 parent 1f92586 commit b91c076
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,18 @@ on:
- '**'
- 'docs/**'
tags:
- '*'
branches:
- 19.03
- "19.03"

name: Build Docs

jobs:
docs:
runs-on: ubuntu-latest
if: contains( github.event.head_commit.message, '[Docs]')
if: |
contains( github.ref, 'refs/tags/' )
|| contains( github.event.head_commit.message, '[Docs]')
steps:
- uses: actions/checkout@master
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/sync-actions.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
on:
push:
tags:
- '*'
branches:
- 19.03
# paths:
Expand All @@ -12,7 +13,8 @@ jobs:
skip-ci:
runs-on: ubuntu-latest
if: |
contains( github.event.head_commit.message, '[sync actions]')
contains( github.ref, 'refs/tags/' )
|| contains( github.event.head_commit.message, '[sync actions]')
|| contains( github.event.head_commit.message, '[sync action]')
steps:
- run: echo "sync continue !"
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/sync-git.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

on:
push:
# tags:
tags:
- '*'
branches:
- "19.03"

Expand All @@ -12,7 +13,8 @@ jobs:
skip-ci:
runs-on: ubuntu-latest
if: |
contains( github.event.head_commit.message, '[sync git]')
contains( github.ref, 'refs/tags/' )
|| contains( github.event.head_commit.message, '[sync git]')
steps:
- run: echo "sync continue !"
sync-git:
Expand Down

0 comments on commit b91c076

Please sign in to comment.