-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
automate extracting the contributors (#9288)
* script to generate the release string * use the new script in the release guide * include `toolz` in the deps
- Loading branch information
Showing
2 changed files
with
54 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import re | ||
import textwrap | ||
|
||
import git | ||
from tlz.itertoolz import last, unique | ||
|
||
co_author_re = re.compile(r"Co-authored-by: (?P<name>[^<]+?) <(?P<email>.+)>") | ||
|
||
|
||
def main(): | ||
repo = git.Repo(".") | ||
|
||
most_recent_release = last(repo.tags) | ||
|
||
# extract information from commits | ||
contributors = {} | ||
for commit in repo.iter_commits(f"{most_recent_release.name}.."): | ||
matches = co_author_re.findall(commit.message) | ||
if matches: | ||
contributors.update({email: name for name, email in matches}) | ||
contributors[commit.author.email] = commit.author.name | ||
|
||
# deduplicate and ignore | ||
# TODO: extract ignores from .github/release.yml | ||
ignored = ["dependabot", "pre-commit-ci"] | ||
unique_contributors = unique( | ||
contributor | ||
for contributor in contributors.values() | ||
if contributor.removesuffix("[bot]") not in ignored | ||
) | ||
|
||
sorted_ = sorted(unique_contributors) | ||
if len(sorted_) > 1: | ||
names = f"{', '.join(sorted_[:-1])} and {sorted_[-1]}" | ||
else: | ||
names = "".join(sorted_) | ||
|
||
statement = textwrap.dedent( | ||
f"""\ | ||
Thanks to the {len(sorted_)} contributors to this release: | ||
{names} | ||
""".rstrip() | ||
) | ||
|
||
print(statement) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |