Skip to content

update RELEASE to v0.50.2 #5571

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

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated by `make release` command.
# DO NOT EDIT.
tag: v0.50.1
tag: v0.50.2

releaseNoteGenerator:
showCommitter: false
Expand Down
10 changes: 9 additions & 1 deletion docs/content/en/docs-v0.50.x/user-guide/plan-preview.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ pipectl plan-preview \
--repo-remote-url={ REPO_REMOTE_GIT_SSH_URL } \
--head-branch={ HEAD_BRANCH } \
--head-commit={ HEAD_COMMIT } \
--base-branch={ BASE_BRANCH }
--base-branch={ BASE_BRANCH } \
--sort-label-keys={ SORT_LABEL_KEYS }
```

You can run it locally or integrate it to your CI system to run automatically when a new pull request is opened/updated. Use `--help` to see more options.
Expand All @@ -47,6 +48,13 @@ You can run it locally or integrate it to your CI system to run automatically wh
pipectl plan-preview --help
```

### Order of the results

By default, the results are sorted by PipedID and Application Name.

If you want to sort the results by labels, add `--sort-label-keys` option. For example, when you run with `--sort-label-keys=env,team`, the results will be sorted by PipedID, `env` label, `team` label, and then Application Name.


## GitHub Actions

If you are using GitHub Actions, you can seamlessly integrate our prepared [actions-plan-preview](https://github.com/pipe-cd/actions-plan-preview) to your workflows. This automatically comments the plan-preview result on the pull request when it is opened or updated. You can also trigger to run plan-preview manually by leave a comment `/pipecd plan-preview` on the pull request.