Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request add a cmdx task
summarize
, outputting a summary of a give pull request.For now, the feature of this task is very simple but enough.
This task outputs a list of changed packages.
e.g.
We assume that we run this command at our laptops and paste the result to the pull request description.
Why is this task necessary?
We provide a task
new
, creating a pull request to add packages.This task is useful, but it has a problem that it doesn't work well if users don't have the permission to push a commit to
origin
.cmdx new
fails if users don't fork aqua-registry #29797We tried to resolve this issue, but it's a bit hard because this depends on user's environment.
So we changed the mind.
Users would be able to create a pull request easily without
cmdx new
.The benefit of
cmdx new
is to give a good description.The description is for maintainers mainly.
We decided to abandon
cmdx new
and complement the benefit by adding a new task creating a good description.The maintainer can run the task at their laptops.
Maintainers can resolve issues regarding their environment themselves.
TODO