Skip to content

Commit 2e479b9

Browse files
authored
Merge pull request #1760 from OneSignal/actions/add_contributors_to_valid_responders
[Actions] Fix the set response time Github action
2 parents fa73d7a + 36921fc commit 2e479b9

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)