Skip to content

Commit 5194065

Browse files
authored
Update update.yml
1 parent 656137f commit 5194065

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/update.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ name: Python application
55

66
on:
77
push:
8-
branches: [seyeon22222]
8+
branches:
9+
- '**'
910

1011

1112
jobs:
@@ -25,3 +26,11 @@ jobs:
2526
run: |
2627
cd workbook
2728
python actions.py
29+
- name: Commit and Push Changes
30+
run: |
31+
git config user.name github-actions
32+
git config user.email [email protected]
33+
git add workbook/
34+
git commit -m "Auto-generate workbook for branch ${{ github.ref_name }}" || echo "No changes to commit"
35+
git push
36+

0 commit comments

Comments
 (0)