-
Notifications
You must be signed in to change notification settings - Fork 65
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
feat(output): save list of deleted artifacts as json #145
feat(output): save list of deleted artifacts as json #145
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
artifactory-cleanup --output=myfile.txt --output-format=json --output-artifacts
https://github.com/devopshq/artifactory-cleanup/pull/145/files#r1674212222
4fedd22
to
02b6f49
Compare
The fixup commit contains your required changes. |
a0b8487
to
ad796af
Compare
output_format: str, | ||
output_artifacts: bool, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cleanup doesn't have to know about output, it works and returns in memory objects
output_format: str, | |
output_artifacts: bool, |
I hope it's latest pass and we can merge it 🤞 |
ee30a2b
to
ddcdada
Compare
The latest fixup contains:
|
ddcdada
to
8d4e2aa
Compare
TY! 🚀 |
Hello,
I am also interested in the feature from Pull Request #136
I have rebased the feature branch on master, squashed the commits, and made some modifications.
@roytev introduced a new option,
--output-artifacts
, which only worked with the specific combination of--output ... --output-format json --output-artifacts
As an alternative, I added a new
--output-format
namedjson-with-artifact-list
, which I find to be more understandable.