We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e116cd commit fe5e3e8Copy full SHA for fe5e3e8
.github/workflows/ci.yml
@@ -2,21 +2,10 @@ name: ci
2
3
on:
4
push:
5
- paths:
6
- - ".github/workflows/ci.yml"
7
- - "lib/**"
8
- - "*.gemspec"
9
- - "spec/**"
10
- - "Rakefile"
11
- - "Gemfile"
12
- - ".rubocop.yml"
13
- - "script/ci"
14
pull_request:
15
- branches:
16
- - main
+ create:
17
schedule:
18
- cron: "30 4 * * *"
19
- create:
20
21
jobs:
22
tests:
@@ -39,3 +28,11 @@ jobs:
39
28
bundler-cache: true # 'bundle install' and cache gems
40
29
- name: Run all tests
41
30
run: script/ci
31
+
32
+ workflow-keepalive:
33
+ if: github.event_name == 'schedule'
34
+ runs-on: ubuntu-latest
35
+ permissions:
36
+ actions: write
37
+ steps:
38
+ - uses: liskin/gh-workflow-keepalive@v1
0 commit comments