committed by
GitHub
3 changed files with 118 additions and 44 deletions
@ -1,31 +0,0 @@ |
|||||
import logging |
|
||||
import sys |
|
||||
|
|
||||
from github import Github |
|
||||
from pydantic import SecretStr |
|
||||
from pydantic_settings import BaseSettings |
|
||||
|
|
||||
|
|
||||
class Settings(BaseSettings): |
|
||||
github_repository: str |
|
||||
github_token: SecretStr |
|
||||
deploy_url: str |
|
||||
commit_sha: str |
|
||||
|
|
||||
|
|
||||
if __name__ == "__main__": |
|
||||
logging.basicConfig(level=logging.INFO) |
|
||||
settings = Settings() |
|
||||
logging.info(f"Using config: {settings.model_dump_json()}") |
|
||||
g = Github(settings.github_token.get_secret_value()) |
|
||||
repo = g.get_repo(settings.github_repository) |
|
||||
use_pr = next( |
|
||||
(pr for pr in repo.get_pulls() if pr.head.sha == settings.commit_sha), None |
|
||||
) |
|
||||
if not use_pr: |
|
||||
logging.error(f"No PR found for hash: {settings.commit_sha}") |
|
||||
sys.exit(0) |
|
||||
use_pr.as_issue().create_comment( |
|
||||
f"📝 Docs preview for commit {settings.commit_sha} at: {settings.deploy_url}" |
|
||||
) |
|
||||
logging.info("Finished") |
|
@ -0,0 +1,97 @@ |
|||||
|
import logging |
||||
|
import re |
||||
|
|
||||
|
from github import Github |
||||
|
from pydantic import SecretStr |
||||
|
from pydantic_settings import BaseSettings |
||||
|
|
||||
|
|
||||
|
class Settings(BaseSettings): |
||||
|
github_repository: str |
||||
|
github_token: SecretStr |
||||
|
deploy_url: str | None = None |
||||
|
commit_sha: str |
||||
|
run_id: int |
||||
|
|
||||
|
|
||||
|
def main(): |
||||
|
logging.basicConfig(level=logging.INFO) |
||||
|
settings = Settings() |
||||
|
|
||||
|
logging.info(f"Using config: {settings.model_dump_json()}") |
||||
|
g = Github(settings.github_token.get_secret_value()) |
||||
|
repo = g.get_repo(settings.github_repository) |
||||
|
use_pr = next( |
||||
|
(pr for pr in repo.get_pulls() if pr.head.sha == settings.commit_sha), None |
||||
|
) |
||||
|
if not use_pr: |
||||
|
logging.error(f"No PR found for hash: {settings.commit_sha}") |
||||
|
return |
||||
|
commits = list(use_pr.get_commits()) |
||||
|
current_commit = [c for c in commits if c.sha == settings.commit_sha][0] |
||||
|
run_url = f"https://github.com/{settings.github_repository}/actions/runs/{settings.run_id}" |
||||
|
if not settings.deploy_url: |
||||
|
current_commit.create_status( |
||||
|
state="pending", |
||||
|
description="Deploy Docs", |
||||
|
context="deploy-docs", |
||||
|
target_url=run_url, |
||||
|
) |
||||
|
logging.info("No deploy URL available yet") |
||||
|
return |
||||
|
current_commit.create_status( |
||||
|
state="success", |
||||
|
description="Deploy Docs", |
||||
|
context="deploy-docs", |
||||
|
target_url=run_url, |
||||
|
) |
||||
|
|
||||
|
files = list(use_pr.get_files()) |
||||
|
docs_files = [f for f in files if f.filename.startswith("docs/")] |
||||
|
|
||||
|
lang_links: dict[str, list[str]] = {} |
||||
|
for f in docs_files: |
||||
|
match = re.match(r"docs/([^/]+)/docs/(.*)", f.filename) |
||||
|
assert match |
||||
|
lang = match.group(1) |
||||
|
path = match.group(2) |
||||
|
if path.endswith("index.md"): |
||||
|
path = path.replace("index.md", "") |
||||
|
else: |
||||
|
path = path.replace(".md", "/") |
||||
|
if lang == "en": |
||||
|
link = f"{settings.deploy_url}{path}" |
||||
|
else: |
||||
|
link = f"{settings.deploy_url}{lang}/{path}" |
||||
|
lang_links.setdefault(lang, []).append(link) |
||||
|
|
||||
|
links: list[str] = [] |
||||
|
en_links = lang_links.get("en", []) |
||||
|
en_links.sort() |
||||
|
links.extend(en_links) |
||||
|
|
||||
|
langs = list(lang_links.keys()) |
||||
|
langs.sort() |
||||
|
for lang in langs: |
||||
|
if lang == "en": |
||||
|
continue |
||||
|
current_lang_links = lang_links[lang] |
||||
|
current_lang_links.sort() |
||||
|
links.extend(current_lang_links) |
||||
|
|
||||
|
message = ( |
||||
|
f"📝 Docs preview for commit {settings.commit_sha} at: {settings.deploy_url}" |
||||
|
) |
||||
|
|
||||
|
if links: |
||||
|
message += "\n\n### Modified Pages\n\n" |
||||
|
message += "\n".join([f"* {link}" for link in links]) |
||||
|
|
||||
|
print(message) |
||||
|
use_pr.as_issue().create_comment(message) |
||||
|
|
||||
|
logging.info("Finished") |
||||
|
|
||||
|
|
||||
|
if __name__ == "__main__": |
||||
|
main() |
Loading…
Reference in new issue