Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cb2384d

Browse files
committedApr 20, 2020
skip ci commits
1 parent 4e1f211 commit cb2384d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

Diff for: ‎.github/workflows/cron.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ on:
33
schedule:
44
- cron: '0 * * * *'
55
jobs:
6-
build-and-deploy:
6+
hourly-build-and-deploy:
77
runs-on: ubuntu-latest
8+
if: "!contains(github.event.head_commit.message, '[CI Skip]')"
89
steps:
910
- name: Checking out the repository
1011
uses: actions/checkout@v2

Diff for: ‎.github/workflows/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
jobs:
88
build-and-deploy:
99
runs-on: ubuntu-latest
10+
if: "!contains(github.event.head_commit.message, '[CI Skip]')"
1011
steps:
1112
- name: Checking out the repository
1213
uses: actions/checkout@v2

0 commit comments

Comments
 (0)
Please sign in to comment.