Skip to content

Commit 9046776

Browse files
authored
fix: Change git user.name and user.email (#23)
* fix: change git user.name and user.email * Update README.md (YAML block and year)
1 parent 6176c69 commit 9046776

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0 # Let's get all the branches.
2323
- name: Update to step 1
@@ -30,4 +30,4 @@ jobs:
3030
base_branch_name: my-base-branch # Optional
3131
```
3232
33-
© 2023 GitHub • [Code of Conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/code_of_conduct.md) • [MIT License](https://gh.io/mit)
33+
© 2024 GitHub • [Code of Conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/code_of_conduct.md) • [MIT License](https://gh.io/mit)

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ runs:
6464
echo "$TO_STEP" > .github/steps/-step.txt
6565
6666
echo "Commit the files, and push to base branch"
67-
git config user.name github-actions
68-
git config user.email github-actions@github.com
67+
git config user.name github-actions[bot]
68+
git config user.email github-actions[bot]@users.noreply.github.com
6969
git add README.md
7070
git add .github/steps/-step.txt
7171
git commit --message="Update to $TO_STEP in STEP and README.md"

0 commit comments

Comments
 (0)