announcing good-first-issue tags added on @tangled.sh (not affiliated with tangled!)

fix up formatting (again)

+6 -4
+6 -4
src/main.rs
··· 223 }: &IssueDetails, 224 ) -> Result<()> { 225 let message = format!( 226 - r#"good-first-issue added for {repo_full_name}: 227 228 > {title}"# 229 ); 230 231 let repo_feature = serde_json::json!({ 232 "$type": "app.bsky.richtext.facet#link", ··· 235 let repo_facet = Facet { 236 features: vec![Data::from_json(&repo_feature)?], 237 index: ByteSlice { 238 - byte_start: 27, 239 - byte_end: 29 + repo_full_name.len() as i64, 240 extra_data: Default::default(), 241 }, 242 extra_data: Default::default(), 243 }; 244 245 - let title_starts_at = (29 + repo_full_name.len() + 5) as i64; 246 247 let repo_issues_feature = serde_json::json!({ 248 "$type": "app.bsky.richtext.facet#link",
··· 223 }: &IssueDetails, 224 ) -> Result<()> { 225 let message = format!( 226 + r#"New from {repo_full_name}: 227 228 > {title}"# 229 ); 230 + 231 + let pre_len = 9; 232 233 let repo_feature = serde_json::json!({ 234 "$type": "app.bsky.richtext.facet#link", ··· 237 let repo_facet = Facet { 238 features: vec![Data::from_json(&repo_feature)?], 239 index: ByteSlice { 240 + byte_start: pre_len, 241 + byte_end: pre_len + repo_full_name.len() as i64, 242 extra_data: Default::default(), 243 }, 244 extra_data: Default::default(), 245 }; 246 247 + let title_starts_at = pre_len + (repo_full_name.len() + 5) as i64; 248 249 let repo_issues_feature = serde_json::json!({ 250 "$type": "app.bsky.richtext.facet#link",