`make feature-shortcode-update` 会跳过非`.md` 文件,以及在其版本发布后添加的孤立短码
作者: igooch创建于 2026年8月12日更新于 2026年9月16日
标签kind/cleanupawaiting-maintainer
问题 1: 仅处理 .md 文件
build/scripts/feature-shortcode-update/main.go:45 会跳过其他内容:
if d.IsDir() || !strings.HasSuffix(d.Name(), ".md") {
return nil
}site/content/en/docs/Reference/agones_crd_api_reference.html 位于同一树中,使用相同的短码,因此在发布时清理程序永远不会到达它。
内容来源: agones-dev/agones