File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
continuous_delivery_scripts/plugins Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ def _generate_github_cli_release_command_list(
2929 "--notes-file" ,
3030 f"{ str (changelog )} " ,
3131 ]
32- title = f":sparkles: Release { version } "
32+ title = f"Release { version } "
3333 if is_latest :
3434 cmd .append ("--latest" )
3535 if is_prerelease :
3636 cmd .append ("--prerelease" )
37- title = f":news: Pre-release { version } "
37+ title = f"Pre-release { version } "
3838 cmd .append ("--title" )
3939 cmd .append (title )
4040 return cmd
@@ -49,7 +49,7 @@ def _generate_github_cli_check_command_list() -> List[str]:
4949
5050def _call_github_cli_check () -> None :
5151 """Calls gh to verify its accessibility."""
52- logger .info ("Checking GitHub Actions is correctly installed." )
52+ logger .info ("Checking whether GitHub CLI is correctly installed." )
5353 env = os .environ
5454 env [ENVVAR_GITHUB_CLI_GIT_TOKEN ] = configuration .get_value (ConfigurationVariable .GIT_TOKEN )
5555 check_call (_generate_github_cli_check_command_list (), env = env )
Original file line number Diff line number Diff line change 1+ :bug: fixed github release title format in `github_actions` plugin
You can’t perform that action at this time.
0 commit comments