-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
[tests][scripts][release] Optimize release note script about categories etc #14653
[tests][scripts][release] Optimize release note script about categories etc #14653
Conversation
Thanks for contributing to TVM! Please refer to the contributing guidelines https://tvm.apache.org/docs/contribute/ for useful information and tips. Please request code reviews from Reviewers by @-ing them in a comment.
Generated by tvm-bot |
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.
Very cool. Thanks!
|
||
REPO_ROOT = Path(__file__).resolve().parent.parent.parent.parent | ||
sys.path.append(str(REPO_ROOT / "tests" / "scripts")) | ||
sys.path.append(str(REPO_ROOT / "tests" / "scripts" / "github")) | ||
sys.path.append(str(REPO_ROOT / "tests" / "scripts" / "jenkins")) | ||
|
||
# Tag dictionary used to create a mapping relation to categorize PRs owning same tag. | ||
TAG_DICT = { |
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 for coming up with this list! It'll make auto-generating the notes much simpler
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.
Yeah, this list will keep maintained gradualy, when we do monthly reports generation.
Co-authored-by: driazati <9407960+driazati@users.noreply.github.com>
gahter_prs.py
: create one csv file only, keep sheet header name with next step scriptmake_notes.py
same;make_notes.py
: create a categories/tags dictionary, used to map various categories/tags to normal ones;README.md
: modifiction aligned with updated scripts etc.release_process.rst
.cc @driazati @Johnson9009