@@ -66,7 +66,6 @@ The example settings of GitHub and GitHub Enterprise are as follows. Incidentall
6666
6767Placeholder | Usage
6868---|---
69- ` {{ .Title }} ` | Like ` ## Plan result `
7069` {{ .Result }} ` | Matched result by parsing like ` Plan: 1 to add ` or ` No changes `
7170` {{ .Body }} ` | The entire of Terraform execution result
7271` {{ .Link }} ` | The link of the build page on CI
@@ -102,7 +101,7 @@ notifier:
102101terraform :
103102 plan :
104103 template : |
105- {{ .Title }} <sup>[CI link]( {{ .Link }} )</sup>
104+ ## Plan Result <sup>[CI link]( {{ .Link }} )</sup>
106105 {{if .Result}}
107106 <pre><code>{{ .Result }}
108107 </pre></code>
@@ -113,7 +112,7 @@ terraform:
113112 </pre></code></details>
114113 apply :
115114 template : |
116- {{ .Title }}
115+ ## Apply Result
117116 {{if .Result}}
118117 <pre><code>{{ .Result }}
119118 </pre></code>
@@ -133,7 +132,7 @@ terraform:
133132 # ...
134133 plan:
135134 template: |
136- {{ .Title }} <sup>[CI link]( {{ .Link }} )</sup>
135+ ## Plan Result <sup>[CI link]( {{ .Link }} )</sup>
137136 {{if .Result}}
138137 <pre><code>{{ .Result }}
139138 </pre></code>
@@ -159,7 +158,7 @@ terraform:
159158 # ...
160159 plan:
161160 template: |
162- {{ .Title }} <sup>[CI link]( {{ .Link }} )</sup>
161+ ## Plan Result <sup>[CI link]( {{ .Link }} )</sup>
163162 {{if .Result}}
164163 <pre><code>{{ .Result }}
165164 </pre></code>
@@ -196,7 +195,7 @@ terraform:
196195 # ...
197196 plan :
198197 template : |
199- {{ .Title }} <sup>[CI link]( {{ .Link }} )</sup>
198+ ## Plan Result <sup>[CI link]( {{ .Link }} )</sup>
200199 {{if .Result}}
201200 ```
202201 {{ .Result }}
@@ -228,7 +227,7 @@ notifier:
228227terraform:
229228 plan:
230229 template: |
231- {{ .Title }} <sup>[CI link]( {{ .Link }} )</sup>
230+ ## Plan Result <sup>[CI link]( {{ .Link }} )</sup>
232231 {{if .Result}}
233232 <pre><code>{{ .Result }}
234233 </pre></code>
@@ -239,7 +238,7 @@ terraform:
239238 </pre></code></details>
240239 apply:
241240 template: |
242- {{ .Title }}
241+ ## Apply Result
243242 {{if .Result}}
244243 <pre><code>{{ .Result }}
245244 </pre></code>
0 commit comments