We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad3c4a3 commit 5090d54Copy full SHA for 5090d54
.github/workflows/integration.yml
@@ -1,6 +1,9 @@
1
name: Integration
2
3
-on: [push]
+on:
4
+ push: {}
5
+ schedule:
6
+ - cron: "0 5 * * *"
7
8
jobs:
9
test-install:
.github/workflows/sync.yml
@@ -1,7 +1,9 @@
name: Sync Versions
-# TODO: Switch to daily cron job
+ - cron: "0 4 * * *"
build:
@@ -24,9 +26,10 @@ jobs:
24
26
25
27
- name: Commit files
28
run: |
- git pull
29
+ git config --local pull.ff only
30
git config --local user.email "[email protected]"
31
git config --local user.name "GitHub Action"
32
+ git pull
33
git commit -m "Sync repository with latest tooling" -a
34
35
- name: Push changes
0 commit comments