Skip to content

Commit

Permalink
docs: add information on how to commit changes back into repository
Browse files Browse the repository at this point in the history
  • Loading branch information
mahyarmirrashed committed Jan 6, 2025
1 parent 8c80f66 commit 27932bf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ jobs:
GITHUB_TOKEN: ${{ secrets.PAT }}
TIMEZONE: "America/Winnipeg"
FEATURES: "DAY_STATS,WEEK_STATS,LANGUAGE_STATS"
- name: "Commit changes"
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add README.md
git commit -m "chore: update readme via actions"
git push
```
Next, generate a Personal Access Token (PAT) in your
Expand Down

0 comments on commit 27932bf

Please sign in to comment.