You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "✅ Contribution guide fetched successfully from GitHub (HTTP $HTTP_STATUS)"
86
86
else
87
-
echo "❌ Failed to fetch contribution guide (HTTP $HTTP_STATUS), trying alternative method..."
88
-
# Try using git show as fallback
89
-
if git show re/ab:radblog/guide/contribution-guide.md > contribution-guide.md 2>/dev/null; then
90
-
STYLE_GUIDE=$(cat contribution-guide.md)
91
-
echo "✅ Contribution guide fetched via git show"
92
-
else
93
-
echo "❌ All methods failed, using fallback style guide"
94
-
STYLE_GUIDE="Follow Radius blog style guide: conversational, user-focused, technical depth over marketing, evidence-based content only."
95
-
fi
87
+
echo "❌ Failed to fetch contribution guide (HTTP $HTTP_STATUS), using fallback"
88
+
STYLE_GUIDE="WRITING GUIDELINES: Conversational, user-focused, technical depth, no marketing language, evidence-based content only from release notes."
96
89
fi
97
90
98
91
# Create AI prompt from template using safer approach
0 commit comments