-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(ci): refine bot messages that encourage better PR descriptions
also edited the name of the GitHub Action to be Release Notes Manager
- Loading branch information
1 parent
198c89b
commit d86d2a0
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 'Release Notes Maintainer' | ||
name: 'Release Notes Manager' | ||
description: 'Generate release notes or show how pull requests affect the release notes' | ||
author: 'Ahmed Khaled [email protected]' | ||
|
||
|
@@ -175,9 +175,9 @@ runs: | |
TRIGGER_EVENT: ${{ inputs.pull-request-trigger-event }} | ||
run: | | ||
if [ "$TRIGGER_EVENT" = "opened" ]; then | ||
echo "COMMENT_TEXT=Thank you for contributing!<br>Below is how your contribution will look like in Synfig's release notes, review it and improve your pull request's title and description so that your contribution is clear, you can add images, videos and anything you want, have fun!<br>" >> "$GITHUB_OUTPUT" | ||
echo "COMMENT_TEXT=Thank you for contributing!<br>Below is how your contribution will appear in Synfig's release notes. Review it and improve your pull request's title and description so that your contribution is clear. You can add images, videos, and anything else you want. Have fun!<br>" >> "$GITHUB_OUTPUT" | ||
elif [ "$TRIGGER_EVENT" = "edited" ]; then | ||
echo "COMMENT_TEXT=Thank you for trying to improve your contribution description!<br>Below is how your updated contribution will look like in Synfig's release notes, review it and improve it till you are satisfied!<br>" >> "$GITHUB_OUTPUT" | ||
echo "COMMENT_TEXT=Thank you for attempting to improve your contribution description!<br>Below is how your updated contribution will appear in Synfig's release notes. Review it and make further improvements until you're satisfied!<br>" >> "$GITHUB_OUTPUT" | ||
fi | ||
shell: bash | ||
|
||
|