Skip to content

Commit

Permalink
Bug 1546925 - allow arbitrary leading text before try syntax,r=mt
Browse files Browse the repository at this point in the history
  • Loading branch information
petemoore committed Apr 25, 2019
1 parent 2b07c6c commit 88cb452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automation/taskcluster/graph/src/try_syntax.js
Expand Up @@ -167,7 +167,7 @@ export async function initFilter() {
let comment = await getCommitComment();

// Check for try syntax in changeset comment.
let match = comment.match(/^\s*try:\s*(.*)\s*$/);
let match = comment.match(/\btry:\s*(.*)\s*$/m);

// Add try syntax filter.
if (match) {
Expand Down

0 comments on commit 88cb452

Please sign in to comment.