Commit ad21b3b
Make PR numbers clickable in table PRs column
Convert PR numbers from plain text to clickable GitHub links using
rich_text cells with multiple link elements.
Changes:
- PR column now uses rich_text cell with link elements
- Each PR is a clickable link: #1234 → #1234
- Multiple PRs separated by commas: #1234, #1235
- Empty state remains plain text: "—"
Example table cell structure:
{
"type": "rich_text",
"elements": [{
"type": "rich_text_section",
"elements": [
{"type": "link", "url": "https://...", "text": "#1234"},
{"type": "text", "text": ", "},
{"type": "link", "url": "https://...", "text": "#1235"}
]
}]
}
Users can now click PR numbers directly in Slack tables to view
the pull requests on GitHub.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>1 parent 0ad0625 commit ad21b3b
1 file changed
+16
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
118 | 118 | | |
119 | 119 | | |
120 | 120 | | |
121 | | - | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
122 | 135 | | |
123 | | - | |
| 136 | + | |
124 | 137 | | |
125 | 138 | | |
126 | 139 | | |
| |||
140 | 153 | | |
141 | 154 | | |
142 | 155 | | |
143 | | - | |
| 156 | + | |
144 | 157 | | |
145 | 158 | | |
146 | 159 | | |
| |||
0 commit comments