Skip to content

Commit b8fe16f

Browse files
committed
Add scheduled GitHub action
1 parent c7e0872 commit b8fe16f

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
name: build
2-
32
on:
43
pull_request:
54
push:
6-
5+
schedule:
6+
- cron: '11 21 * * *'
77
jobs:
8-
98
lint:
109
runs-on: ubuntu-latest
1110
steps:
1211
- uses: actions/checkout@v1
1312
- uses: actions/setup-node@v1
1413
- run: npm install -g dockerlint
1514
- run: dockerlint
16-
1715
build:
1816
runs-on: ubuntu-latest
1917
needs: lint

.github/workflows/push.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11
name: push
2-
32
on:
43
push:
54
tags:
65
- '*'
7-
86
jobs:
9-
107
lint:
118
runs-on: ubuntu-latest
129
steps:
1310
- uses: actions/checkout@v1
1411
- uses: actions/setup-node@v1
1512
- run: npm install -g dockerlint
1613
- run: dockerlint
17-
1814
build-push:
1915
runs-on: ubuntu-latest
2016
needs: lint

0 commit comments

Comments
 (0)