-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(ci): CHANGELOG.md generation fix for 'no change' and yoshi-code-bot email #9566
Conversation
) | ||
self.assertEqual(entry, f'''## 1.2.3 (2023-06-10) | ||
|
||
* No change |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the effect of this pull request.
@@ -22,7 +22,6 @@ jobs: | |||
steps: | |||
- uses: actions/checkout@v3 | |||
with: | |||
fetch-depth: 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The fetch-depth default 1 seems enough. No need to fetch all branches.
https://github.com/actions/checkout#checkout-a-different-branch
@@ -40,7 +39,7 @@ jobs: | |||
python3 .github/release-note-generation/split_release_note.py pr_body.txt . | |||
- name: Commit the change and push to the pull request branch | |||
run: | | |||
git config user.email "yoshi-code-bot[bot]@users.noreply.github.com" | |||
git config user.email "[email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To show 'No change' if there's no change for a library. Before this change, it's blank:
Use proper name in yoshi-code-bot so that it passes CLA.