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 04d37dd commit 503bd2aCopy full SHA for 503bd2a
.github/workflows/update-calendar.yml
@@ -1,6 +1,9 @@
1
name: Update calendar
2
3
on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
schedule:
8
- cron: '0 0 * * *'
9
@@ -22,7 +25,8 @@ jobs:
22
25
run: pipenv install
23
26
- name: Run script
24
27
run: pipenv run update-calendar
- - uses: stefanzweifel/git-auto-commit-action@v5
28
+ - if: github.event_name == 'schedule'
29
+ uses: stefanzweifel/git-auto-commit-action@v5
30
with:
31
commit_message: Auto commit - Calendar was updated
32
0 commit comments