-
Notifications
You must be signed in to change notification settings - Fork 341
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 by Bors] - rename: no_lost_declarations
to declarations_diff
and short
as default option
#14105
Conversation
PR summary 01cceba7e3Import changes for modified filesNo significant changes to the import graph Import changes for all files
Declarations diffNo declarations were harmed in the making of this PR! 🐙 You can run this locally as follows## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/declarations_diff.sh long <optional_commit> |
…larations_to_decl_diff
Looks reasonable! What do you think about renaming to |
no_lost_declarations
to decls_diff
and short
as default optionno_lost_declarations
to declarations_diff
and short
as default option
Michael, thank you for the suggestion: I like it and I renamed the script to |
Thanks! |
🚀 Pull request has been placed on the maintainer queue by grunweg. |
bors merge |
…default option (#14105) This PR renames the `no_lost_declarations` script to `declarations_diff`, to better describe the effect of the script. It was originally intended as a script to make sure that "moving" PRs did not leave out any declaration, but is now used as a measure of the diff in declarations between PRs and master. The other change it does is to make the `short` option the default, as this is the most commonly used. |Old|New| |-|-| |`./scripts/no_lost_declarations.sh short`|`./scripts/declarations_diff.sh`| |`./scripts/no_lost_declarations.sh`|`./scripts/declarations_diff.sh long`| Mostly, these changes are invisible, as this script is used almost exclusively by CI, but the intention is that the change conveys better what script does to a human.
Pull request successfully merged into master. Build succeeded: |
no_lost_declarations
to declarations_diff
and short
as default optionno_lost_declarations
to declarations_diff
and short
as default option
This PR renames the
no_lost_declarations
script todeclarations_diff
, to better describe the effect of the script. It was originally intended as a script to make sure that "moving" PRs did not leave out any declaration, but is now used as a measure of the diff in declarations between PRs and master.The other change it does is to make the
short
option the default, as this is the most commonly used../scripts/no_lost_declarations.sh short
./scripts/declarations_diff.sh
./scripts/no_lost_declarations.sh
./scripts/declarations_diff.sh long
Mostly, these changes are invisible, as this script is used almost exclusively by CI, but the intention is that the change conveys better what script does to a human.