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 1a6e830 commit 51874d2Copy full SHA for 51874d2
.github/workflows/trigger.yml
@@ -0,0 +1,17 @@
1
+name: Trigger new build
2
+on:
3
+ schedule:
4
+ - cron: '15 11 3 * *'
5
+
6
+jobs:
7
+ deploy:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: checkout master
11
+ uses: actions/checkout@v2
12
+ - name: Create an empty commit and push it
13
+ run: |
14
+ git config --local user.name 'github-actions'
15
+ git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com'
16
+ git commit --allow-empty -m 'Trigger a new build'
17
+ git push origin master
0 commit comments