native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add fallback release notes when no changes

khoi b2e49a1b f997d50a

+12 -3
+12 -3
.github/workflows/release.yml
··· 95 95 lines.append(f"**{title}**") 96 96 lines.extend([f"- {item}" for item in items]) 97 97 98 - add_section("✨ New Features", data.get("new_features", [])) 99 - add_section("🐛 Bug Fixes", data.get("bug_fixes", [])) 100 - add_section("🌱 Improvements", data.get("improvements", [])) 98 + new_features = data.get("new_features", []) 99 + bug_fixes = data.get("bug_fixes", []) 100 + improvements = data.get("improvements", []) 101 + 102 + add_section("✨ New Features", new_features) 103 + add_section("🐛 Bug Fixes", bug_fixes) 104 + add_section("🌱 Improvements", improvements) 105 + 106 + if not (new_features or bug_fixes or improvements): 107 + lines.append("") 108 + lines.append("**ℹ️ Notes**") 109 + lines.append("- No user-facing changes in this release.") 101 110 102 111 Path("build/release-notes.md").write_text("\n".join(lines).strip() + "\n") 103 112 PY