Skip to content

Commit

Permalink
Merge pull request #57 from greatexpectationslabs/update-next-steps
Browse files Browse the repository at this point in the history
Add message about manually updating develop
  • Loading branch information
tyler-hoffman authored May 10, 2024
2 parents 29b0317 + 2745adb commit 21b1d32
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ge_releaser/cmd/prep.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def prep(git: GitService) -> None:
)
click.secho(" * Opened prep PR (7/7)", fg="yellow")

_print_next_steps(url)
_print_next_steps(url, git)


def _parse_versions(
Expand Down Expand Up @@ -178,9 +178,13 @@ def _create_pr(
return os.path.join(GxURL.PULL_REQUESTS, str(pr.number))


def _print_next_steps(url: str) -> None:
def _print_next_steps(url: str, git: GitService) -> None:
click.secho(
"\n[SUCCESS] Please review, approve, and merge PR before continuing to `publish` command",
fg="green",
)
click.echo(f"Link to PR: {url}")
if git.trunk_is_0ver:
click.echo(
f"TEMPORARY MANUAL STEP: Please copy over the new changes from the above PR into {GxFile.CHANGELOG_MD_V1} on develop."
)

0 comments on commit 21b1d32

Please sign in to comment.