You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
result+=f"\n\nComparison of nightly **[#{nightly_a.run_number}]({self._nighly_url_template.substitute(id=nightly_a.id)})**\
156
-
and **[#{nightly_b.run_number}]({self._nighly_url_template.substitute(id=nightly_b.id)})**"
155
+
result+=f"\n\nComparison of nightly {self._nightly_template.substitute(run_number=nightly_a.run_number, id=nightly_a.id)}\
156
+
and {self._nightly_template.substitute(run_number=nightly_b.run_number, id=nightly_b.id)}"
157
157
ifnightly_a.commit!=nightly_b.commit:
158
158
result+=f"\n\n⚠️ The nightlies used different commits: `{nightly_a.commit[:7]}` (#{nightly_a.run_number}) != `{nightly_b.commit[:7]}` (#{nightly_b.run_number})"
159
159
ifnightly_a.run_number==nightly_b.run_number:
160
-
result+=f"\n\n⚠️ Comparing the nightly **[#{nightly_a.run_number}]({self._nighly_url_template.substitute(id=nightly_a.id)})** to itself can not reveal any issues"
160
+
result+=f"\n\n⚠️ Comparing the nightly {self._nightly_template.substitute(run_number=nightly_a.run_number, id=nightly_a.id)} to itself can not reveal any issues"
161
161
else:
162
-
result+=f"\n\nComparison of the latest nightly **[#{nightly_b.run_number}]({self._nighly_url_template.substitute(id=nightly_b.id)})**\
162
+
result+=f"\n\nComparison of the latest nightly {self._nightly_template.substitute(run_number=nightly_b.run_number, id=nightly_b.id)}\
163
163
with a new build"
164
164
ifnightly_a.commit!=nightly_b.commit:
165
165
result+=f"\n\n⚠️ The build used different commits: `{nightly_b.commit[:7]}` (#{nightly_b.run_number}) != `{nightly_a.commit[:7]}` (new build)"
0 commit comments