-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Make small improvements to the release notes scripts #5457
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
Make small improvements to the release notes scripts #5457
Conversation
Add release tags as parameters, exclude prototype stuff from release notes and automate contributors list
💊 CI failures summary and remediationsAs of commit 96e2785 (more details on the Dr. CI page): 💚 💚 Looks good so far! There are no failures yet. 💚 💚 This comment was automatically generated by Dr. CI (expand for details).Please report bugs/suggestions to the (internal) Dr. CI Users group. |
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.
Thanks @jdsgomes
# In[12]: | ||
|
||
# Generate list of authors | ||
command_to_run = f"{{ git shortlog -s {previous_release}..{current_release} | cut -f2- & git log -s {previous_release}..{current_release} | grep Co-authored | cut -f2- -d: | cut -f1 -d\< | sed 's/^ *//;s/ *$//' ; }} | sort --ignore-case | uniq | tr '\n' ';' | sed 's/;/, /g;s/, $//' | fold -s" |
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.
The linter is complaining about this line. It might be due to a change made yesterday to run temporarily on root. This was patched today so let's merge main and retry.
Hey @jdsgomes! You merged this PR, but no labels were added. The list of valid labels is available at https://github.com/pytorch/vision/blob/main/.github/process_commit.py |
Summary: * Make small improvements to the release notes scripts Add release tags as parameters, exclude prototype stuff from release notes and automate contributors list Reviewed By: jdsgomes Differential Revision: D34475323 fbshipit-source-id: 4a852e86a4ddff2dd60dc64d5dbe0cd92127aecb
Add release tags as parameters, exclude prototype stuff from release notes and
automate contributors list