Skip to content

Commit 27932bf

Browse files
docs: add information on how to commit changes back into repository
1 parent 8c80f66 commit 27932bf

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ jobs:
6161
GITHUB_TOKEN: ${{ secrets.PAT }}
6262
TIMEZONE: "America/Winnipeg"
6363
FEATURES: "DAY_STATS,WEEK_STATS,LANGUAGE_STATS"
64+
- name: "Commit changes"
65+
run: |
66+
git config --global user.name "github-actions[bot]"
67+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
68+
git add README.md
69+
git commit -m "chore: update readme via actions"
70+
git push
6471
```
6572
6673
Next, generate a Personal Access Token (PAT) in your

0 commit comments

Comments
 (0)