We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2422be commit b3a0039Copy full SHA for b3a0039
.github/workflows/schedule.yaml
@@ -22,6 +22,4 @@ jobs:
22
run: npm run daily-schedule
23
- name: Commit static
24
run: |
25
- git config --global user.name 'robot'
26
- git commit -am "feat: from daily schedule"
27
- git push
+ source ./scripts/commit.sh
scripts/commit.sh
@@ -1,6 +1,6 @@
1
if [[ `git status --porcelain` ]]; then
2
git config --global user.name 'robot'
3
git add .
4
- git commit -m "feat: automate generate data"
+ git commit -m "commit automatically"
5
git push
6
fi
0 commit comments