release.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. """Main function for releasing."""
  18. import argparse
  19. import os
  20. from github.changelog import Changelog
  21. from github.git import Git
  22. from github.pull_request import PullRequest
  23. from github.user import User
  24. def get_changelog(access_token: str, milestone: str) -> str:
  25. """Get changelog in specific milestone from GitHub Restful API."""
  26. pr = PullRequest(token=access_token)
  27. pr_merged = pr.search_merged_by_milestone(milestone)
  28. # Sort according to merged time ascending
  29. pr_merged_sort = sorted(pr_merged, key=lambda p: p["closed_at"])
  30. changelog = Changelog(pr_merged_sort)
  31. changelog_text = changelog.generate()
  32. return changelog_text
  33. def get_contributor(access_token: str, milestone: str) -> str:
  34. """Get contributor in specific milestone from GitHub Restful API."""
  35. pr = PullRequest(token=access_token)
  36. pr_merged = pr.search_merged_by_milestone(milestone)
  37. users = User(prs=pr_merged)
  38. contributor = users.contributors()
  39. # Sort according alphabetical
  40. return ", ".join(sorted(contributor))
  41. def auto_cherry_pick(access_token: str, milestone: str) -> None:
  42. """Do git cherry-pick in specific milestone, require update dev branch."""
  43. pr = PullRequest(token=access_token)
  44. pr_merged = pr.search_merged_by_milestone(milestone)
  45. # Sort according to merged time ascending
  46. pr_merged_sort = sorted(pr_merged, key=lambda p: p["closed_at"])
  47. for p in pr_merged_sort:
  48. pr_detail = pr.get_merged_detail(p["number"])
  49. print(f"git cherry-pick -x {pr_detail['merge_commit_sha']}")
  50. Git().cherry_pick_pr(pr_detail)
  51. def build_argparse() -> argparse.ArgumentParser:
  52. """Build argparse.ArgumentParser with specific configuration."""
  53. parser = argparse.ArgumentParser(prog="release")
  54. subparsers = parser.add_subparsers(
  55. title="subcommands",
  56. dest="subcommand",
  57. help="Choose one of the subcommand you want to run.",
  58. )
  59. parser_check = subparsers.add_parser(
  60. "changelog", help="Generate changelog from specific milestone."
  61. )
  62. parser_check.set_defaults(func=get_changelog)
  63. parser_prune = subparsers.add_parser(
  64. "contributor", help="List all contributors from specific milestone."
  65. )
  66. parser_prune.set_defaults(func=get_contributor)
  67. parser_prune = subparsers.add_parser(
  68. "cherry-pick",
  69. help="Auto cherry pick pr to current branch from specific milestone.",
  70. )
  71. parser_prune.set_defaults(func=auto_cherry_pick)
  72. return parser
  73. if __name__ == "__main__":
  74. arg_parser = build_argparse()
  75. # args = arg_parser.parse_args(["cherry-pick"])
  76. args = arg_parser.parse_args()
  77. ENV_ACCESS_TOKEN = os.environ.get("GH_ACCESS_TOKEN", None)
  78. ENV_MILESTONE = os.environ.get("GH_REPO_MILESTONE", None)
  79. if ENV_ACCESS_TOKEN is None or ENV_MILESTONE is None:
  80. raise RuntimeError(
  81. "Environment variable `GH_ACCESS_TOKEN` and `GH_REPO_MILESTONE` must provider"
  82. )
  83. print(args.func(ENV_ACCESS_TOKEN, ENV_MILESTONE))