Openstatus www.openstatus.dev
6
fork

Configure Feed

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

fix: md (#1283)

authored by

Maximilian Kaske and committed by
GitHub
58f8497c e989bf3c

+37 -3
+1
packages/emails/emails/_components/styles.ts
··· 3 3 danger: "#ec6041", 4 4 warning: "#ffd60a", 5 5 info: "#3d9eff", 6 + border: "#dedede", 6 7 }; 7 8 8 9 export const styles = {
+36 -3
packages/emails/emails/status-report.tsx
··· 6 6 Head, 7 7 Heading, 8 8 Html, 9 + Markdown, 9 10 Preview, 10 11 Row, 11 12 Text, ··· 98 99 </Row> 99 100 <Row style={styles.row}> 100 101 <Column> 101 - <Text>{message}</Text> 102 + <Markdown 103 + markdownCustomStyles={{ 104 + p: { fontSize: 14, lineHeight: 24 }, 105 + h1: { fontSize: 24, lineHeight: 32 }, 106 + h2: { fontSize: 20, lineHeight: 28 }, 107 + h3: { fontSize: 16, lineHeight: 24 }, 108 + h4: { fontSize: 14, lineHeight: 24 }, 109 + h5: { fontSize: 12, lineHeight: 20 }, 110 + h6: { fontSize: 10, lineHeight: 16 }, 111 + li: { fontSize: 14, lineHeight: 24 }, 112 + hr: { borderColor: colors.border }, 113 + }} 114 + > 115 + {message} 116 + </Markdown> 102 117 </Column> 103 118 </Row> 104 119 </Layout> ··· 114 129 reportTitle: "API Unavaible", 115 130 status: "investigating", 116 131 date: new Date().toISOString(), 117 - message: 118 - "The API is down, including the webhook. We are actively investigating the issue and will provide updates as soon as possible.", 132 + message: ` 133 + **Status**: Partial Service Restored 134 + **GitHub Runners**: Operational 135 + **Cache Action**: Degraded 136 + 137 + --- 138 + 139 + ### What’s Changed 140 + 141 + - All queued workflows are now being picked up and completed successfully. 142 + - Jobs are running normally on our GitHub App. ### Current Issue: Cache Action Unavailable Attempts to re-publish our action to GitHub Marketplace are returning 500 Internal Server Errors. This prevents the updated versions from going live. 143 + 144 + ### Mitigation In Progress 145 + 146 + - Collaborating with GitHub Support to resolve any upstream issues. 147 + 148 + ### Next Update 149 + 150 + We’ll post another update by **19:00 UTC** today or sooner if critical developments occur. We apologize for the inconvenience and appreciate your patience as we restore full cache functionality. 151 + `, 119 152 monitors: ["OpenStatus API", "OpenStatus Webhook"], 120 153 }; 121 154