We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d2f2a2 commit 8c7324dCopy full SHA for 8c7324d
1 file changed
.github/workflows/ci.yml
@@ -1,5 +1,10 @@
1
name: CI
2
-on: [push, pull_request]
+on:
3
+ push:
4
+ pull_request:
5
+ schedule:
6
+ # Run every on Friday to ensure everything works as expected.
7
+ - cron: '0 6 * * 5'
8
jobs:
9
CI:
10
runs-on: ubuntu-20.04
@@ -23,7 +28,7 @@ jobs:
23
28
- name: Set up Zammad
24
29
shell: bash
25
30
run: |
26
- git clone https://github.com/zammad/zammad.git
31
+ git clone --depth 1 https://github.com/zammad/zammad.git
27
32
cd zammad
33
source /etc/profile.d/rvm.sh # ensure RVM is loaded
34
bundle config set --local frozen 'true'
0 commit comments