Lines Matching +full:- +full:- +full:repo
21 "noto-data-dev",
22 "noto-docs",
23 "noto-project-template",
24 "notoglot-mini",
43 ls = subprocess.run(["git", "ls-files", "--others"], capture_output=True)
53 subprocess.run(["git", "config", "user.name", "actions-user"])
54 subprocess.run(["git", "config", "user.email", "actions-user@users.noreply.github.com"])
69 repo = g.get_repo("notofonts/" + repo_name) variable
70 if repo.archived:
73 print("Unknown repo %s; is it missing from fontrepos?" % repo_name)
78 repo = g.get_repo("notofonts/" + repo_name) variable
80 "title": repo.description,
88 for issue in repo.get_issues():
97 releases = repo.get_releases()
101 m = re.match(r"^(.*)-(v[\d.]+)", release.tag_name)
108 family = re.sub(r"([a-z])([A-Z])", r"\1 \2", family)
122 tag_sha = repo.get_git_ref("tags/" + release.tag_name).object.sha
124 body = repo.get_git_tag(tag_sha).message
152 subprocess.run(["git", "commit", "-m", "Add " + release.tag_name])