GRM-52: fix: badges job runs after release to reflect actual state

This commit is contained in:
2026-06-22 06:15:33 +00:00
parent b6e87a519b
commit 8bde4cd12b
5 changed files with 106 additions and 17 deletions
+27 -8
View File
@@ -4,6 +4,11 @@
Replaces the inline shell script in the post-merge workflow with a
tested Python equivalent.
The script fetches the latest master before generating badges so that
the version badge always reflects the current state of the repository
(even if a release commit was pushed moments before by the parallel
release job).
Usage::
python3 scripts/ci/push_badges.py
@@ -24,6 +29,18 @@ def _run(cmd: list[str], **kwargs: Any) -> subprocess.CompletedProcess[str]:
return subprocess.run(cmd, check=True, text=True, **kwargs) # nosec B603
def fetch_latest_master(branch: str = "master") -> None:
"""Fetch and hard-reset to the latest remote branch.
Ensures the working tree reflects the absolute latest state of the
remote, which is critical when the release job may have just pushed
a new version commit.
"""
_run(["git", "fetch", "origin", branch]) # nosec B607
_run(["git", "reset", "--hard", f"origin/{branch}"]) # nosec B607
click.echo(f"Synced to latest origin/{branch}")
def generate_badges(output_dir: str) -> None:
"""Generate badge SVG files using generate_badges.py."""
_run([sys.executable, "scripts/generate_badges.py", "--output-dir", output_dir])
@@ -35,10 +52,10 @@ def generate_badges(output_dir: str) -> None:
def push_to_badges_branch(badges_dir: str) -> None:
"""Push generated badges to the orphan ``badges`` branch."""
_run(["git", "config", "user.name", "gitea-actions-bot"])
_run(["git", "config", "user.email", "actions@oblachno.fyi"])
_run(["git", "checkout", "--orphan", "badges"])
_run(["git", "rm", "-rf", "."])
_run(["git", "config", "user.name", "gitea-actions-bot"]) # nosec B607
_run(["git", "config", "user.email", "actions@oblachno.fyi"]) # nosec B607
_run(["git", "checkout", "--orphan", "badges"]) # nosec B607
_run(["git", "rm", "-rf", "."]) # nosec B607
# Copy badge files to root
import shutil
@@ -46,16 +63,18 @@ def push_to_badges_branch(badges_dir: str) -> None:
for svg in Path(badges_dir).glob("*.svg"):
shutil.copy2(svg, Path.cwd() / svg.name)
_run(["git", "add", "./*.svg"])
_run(["git", "commit", "--no-verify", "-m", "Update badges [skip ci]"])
_run(["git", "push", "origin", "badges", "--force"])
_run(["git", "add", "./*.svg"]) # nosec B607
_run(["git", "commit", "--no-verify", "-m", "Update badges [skip ci]"]) # nosec B607
_run(["git", "push", "origin", "badges", "--force"]) # nosec B607
click.echo("Badges pushed to badges branch")
@click.command()
@click.option("--output-dir", default=".badges/", help="Temporary directory for badge files.")
def main(output_dir: str) -> None:
@click.option("--branch", default="master", help="Branch to sync before generating badges.")
def main(output_dir: str, branch: str) -> None:
"""Generate badges and push them to the badges branch."""
fetch_latest_master(branch)
generate_badges(output_dir)
push_to_badges_branch(output_dir)