Skip to content

Commit 2f96886

Browse files
committed
🐛 fixed github release title format in github_actions plugin
1 parent eae1858 commit 2f96886

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

continuous_delivery_scripts/plugins/github_actions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

5050
def _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)

news/20221222014441.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
:bug: fixed github release title format in `github_actions` plugin

0 commit comments

Comments
 (0)