Skip to content

Commit 9945005

Browse files
committed
Fix invalid event name in GitHub Action workflow
1 parent f8898f5 commit 9945005

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/update_calendar_date.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
name: Fix Missing Calendar Date
22

33
on:
4-
push::
4+
push:
55
branches:
66
- main
7-
pull_request::
7+
pull_request:
88
branches:
99
- main
10-
workflow_dispatch:
11-
# Enable manual triggering
10+
workflow_dispatch: # Enables manual triggering
1211

1312
jobs:
1413
fix_calendar_date:
@@ -25,8 +24,10 @@ jobs:
2524

2625
- name: Install Dependencies
2726
run: pip install pyyaml
27+
2828
- name: Run Calendar Date Fix Script
2929
run: python .github/scripts/fix_calendar_date.py
30+
3031
- name: Commit and Push Changes
3132
run: |
3233
git config --global user.name \"github-actions[bot]\"

0 commit comments

Comments
 (0)