Jira 自動化でテーブル構造を作成する
プラットフォームの注記: Cloud のみ - This article only applies to Atlassian apps on the クラウド プラットフォーム上のアトラシアン製品にのみ適用されます。
要約
Learn how to format an email in Jira automation rules to display information in a table structure. This can be particularly useful for sending weekly reports or summarizing issue details in a structured format.
ソリューション
Format the table using HTML
Jira 自動化ルール内のテーブル構造を作成するには、HTML 形式を使用できます。
Select the rule's Trigger according to your scenario.
追加 the Action: Send email, using HTML to populate the content. Example:
<table border="1"> <tr> <th>Issue Key</th> <th>Priority</th> <th>Status</th> </tr> <tr> <td>{{issue.key}}</td> <td>{{issue.priority.name}}</td> <td>{{issue.status.name}}</td> </tr> </table>The snippet above will return the table in the email body:
課題キー | 優先度 | ステータス |
AI-57 | 最高 | バックログ |
You can use smart values combined with HTML to dynamically populate the table according to your use case:
Find all available smart values for a Jira issue (for custom fields)
この内容はお役に立ちましたか?