Merge pull request #5880 from maxGimeno/Fix_doc_error_in_tool-maxGImeno

Doc tool fix
This commit is contained in:
Laurent Rineau 2021-07-30 09:53:49 +02:00 committed by GitHub
commit 2af6116d76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -22,10 +22,10 @@ jobs:
if(re.test(body)){
const res = re.exec(body)
if(body.includes("force-")) {
return "res[1]:yes";
return res[2]+":yes"
}
else{
return "res[1]:no";
return res[2]+":no"
}
}
}