We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 656137f commit 5194065Copy full SHA for 5194065
1 file changed
.github/workflows/update.yml
@@ -5,7 +5,8 @@ name: Python application
5
6
on:
7
push:
8
- branches: [seyeon22222]
+ branches:
9
+ - '**'
10
11
12
jobs:
@@ -25,3 +26,11 @@ jobs:
25
26
run: |
27
cd workbook
28
python actions.py
29
+ - name: Commit and Push Changes
30
+ run: |
31
+ git config user.name github-actions
32
+ git config user.email github-actions@github.com
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