feat: 上流ドキュメントの更新検知ワークフローを追加#1107
Open
toshi0607 wants to merge 1 commit into
Open
Conversation
golang/website の _content/doc/faq.md の更新を週次で検知し、 未追従の差分があれば compare リンク付きの issue を自動作成する。 baseline_sha は最終翻訳コミット(2024-09-15)時点の上流 SHA。 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
golang/website の
_content/doc/faq.md(Go FAQ 原文)の更新を週次(月曜 6:00 JST)で検知し、翻訳(README.md)に未反映の差分があれば compare リンク付きの issue を自動作成するワークフローを追加します。仕組み
upstream.json— 追跡対象と「翻訳が追従している上流 SHA」(baseline)の台帳scripts/check-upstream.sh— 上流最新 SHA と baseline を比較し、差分があれば issue 作成(同タイトルの open issue があればスキップ)。DRY_RUN=1でローカル確認可能.github/workflows/check-upstream.yml— cron + 手動実行(workflow_dispatch)検証
DRY_RUN=1 bash scripts/check-upstream.shで 2024-09 以降の未追従差分を正しく検出することを確認済み🤖 Generated with Claude Code