sync/notify/bugs.py [388:417]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if treeherder_url is not None:
        treeherder_text = "[Gecko CI (Treeherder)](%s)" % treeherder_url
    else:
        treeherder_text = "Missing results from treeherder"

    if wpt_sha is not None:
        wpt_text = "[GitHub PR Head](https://wpt.fyi/results/?sha=%s&label=pr_head)" % wpt_sha
    else:
        wpt_text = "Missing results from GitHub"

    comment = """Syncing wpt \
[PR {pr_id}](https://github.com/web-platform-tests/wpt/pull/{pr_id})\
 found new crashes in CI

# Affected Tests

{details}

# CI Results

{treeherder_text}
{wpt_text}

# Notes

Getting the crash signature into these bug reports is a TODO; sorry

These updates will be on mozilla-central once bug {sync_bug_id} lands.

{postscript}""".format(pr_id=sync.pr,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sync/notify/bugs.py [456:483]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if treeherder_url is not None:
        treeherder_text = "[Gecko CI (Treeherder)](%s)" % treeherder_url
    else:
        treeherder_text = "Missing results from treeherder"

    if wpt_sha is not None:
        wpt_text = "[GitHub PR Head](https://wpt.fyi/results/?sha=%s&label=pr_head)" % wpt_sha
    else:
        wpt_text = "Missing results from GitHub"

    comment = """Syncing wpt \
[PR {pr_id}](https://github.com/web-platform-tests/wpt/pull/{pr_id}) \
found new untriaged test failures in CI

# Tests Affected

{details}

# CI Results

{treeherder_text}
{wpt_text}

# Notes

These updates will be on mozilla-central once bug {sync_bug_id} lands.

{postscript}""".format(pr_id=sync.pr,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



