Skip to content

Commit

Permalink
[Bug] Fix a missing git config section
Browse files Browse the repository at this point in the history
  * This will fix the following error:

```
  stderr: 'Author identity unknown

*** Please tell me who you are.

Run

  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.
```

Signed-off-by: Junya Sasaki <junya.sasaki@tier4.jp>
  • Loading branch information
sasakisasaki committed Aug 27, 2024
1 parent 5f3e54d commit 36c6689
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/create-version-update-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ jobs:

- name: Install dependencies
run: python -m pip install --upgrade pyyaml PyGithub GitPython packaging


- name: Set git config
uses: autowarefoundation/autoware-github-actions/set-git-config@v1
with:
token: ${{ steps.generate-token.outputs.token }}

- name: Run Python
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
Expand Down

0 comments on commit 36c6689

Please sign in to comment.