Skip to content

Commit 2c80351

Browse files
authored
Merge pull request #1015 from OneSignal/actions/fix_set_response_time
[Actions] Fix the set response time Github action
2 parents 4f72df6 + d546ebe commit 2c80351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/set_response_times.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = async(context, osmetadata) => {
3636
console.log(foundString);
3737
return foundString;
3838
}
39-
if (context.payload.comment && context.payload.comment.author_association != "MEMBER" && context.payload.comment.author_association != "OWNER") {
39+
if (context.payload.comment && context.payload.comment.author_association != "MEMBER" && context.payload.comment.author_association != "OWNER" && context.payload.comment.author_association != "CONTRIBUTOR") {
4040
return;
4141
}
4242
const businessDaysResponseTime = calcResponseTimeForIssueCreatedAt(context.payload.issue.created_at);

0 commit comments

Comments
 (0)