You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log('Make sure you are using the most up to date checklist found here: https://raw.githubusercontent.com/Expensify/App/main/.github/PULL_REQUEST_TEMPLATE.md');
158
155
core.setFailed('Contributor checklist is not completely filled out. Please check every box to verify you\'ve thought about the item.');
159
156
return;
160
157
}
161
158
162
159
if(!contributorPlusChecklistComplete){
160
+
console.log('Make sure you are using the most up to date checklist found here: https://raw.githubusercontent.com/Expensify/App/main/.github/PULL_REQUEST_TEMPLATE.md');
163
161
core.setFailed('Contributor plus checklist is not completely filled out. Please check every box to verify you\'ve thought about the item.');
if (comment.includes(completedContributorChecklist.replace(whitespace, ''))) {
155
155
contributorChecklistComplete = true;
156
-
} else if (comment.includes('- [')) {
157
-
printUncheckedItems(combinedData[i]);
158
156
}
159
157
160
158
if (comment.includes(completedContributorPlusChecklist.replace(whitespace, ''))) {
161
159
contributorPlusChecklistComplete = true;
162
-
} else if (comment.includes('- [')) {
163
-
printUncheckedItems(combinedData[i]);
164
160
}
165
161
}
166
162
167
163
if (!contributorChecklistComplete) {
164
+
console.log('Make sure you are using the most up to date checklist found here: https://raw.githubusercontent.com/Expensify/App/main/.github/PULL_REQUEST_TEMPLATE.md');
168
165
core.setFailed('Contributor checklist is not completely filled out. Please check every box to verify you\'ve thought about the item.');
169
166
return;
170
167
}
171
168
172
169
if (!contributorPlusChecklistComplete) {
170
+
console.log('Make sure you are using the most up to date checklist found here: https://raw.githubusercontent.com/Expensify/App/main/.github/PULL_REQUEST_TEMPLATE.md');
173
171
core.setFailed('Contributor plus checklist is not completely filled out. Please check every box to verify you\'ve thought about the item.');
0 commit comments