Skip to content

Commit

Permalink
fix: Change git user.name and user.email (#23)
Browse files Browse the repository at this point in the history
* fix: change git user.name and user.email

* Update README.md (YAML block and year)
  • Loading branch information
sinsukehlab authored Feb 5, 2024
1 parent 6176c69 commit 9046776
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Let's get all the branches.
- name: Update to step 1
Expand All @@ -30,4 +30,4 @@ jobs:
base_branch_name: my-base-branch # Optional
```
© 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)
© 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)
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ runs:
echo "$TO_STEP" > .github/steps/-step.txt
echo "Commit the files, and push to base branch"
git config user.name github-actions
git config user.email github-actions@github.com
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git add README.md
git add .github/steps/-step.txt
git commit --message="Update to $TO_STEP in STEP and README.md"
Expand Down

0 comments on commit 9046776

Please sign in to comment.