Skip to content

Commit 5397d11

Browse files
authored
Merge pull request #168 from maxmind/greg/action-schedule
Run actions on schedule
2 parents 6d42ab4 + 533a3dc commit 5397d11

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: PHP Lints
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: '55 3 * * SUN'
48

59
jobs:
610
run:

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: PHPUnit
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: '55 3 * * SUN'
48

59
jobs:
610
run:

0 commit comments

Comments
 (0)