Skip to content

Commit b7b2f9c

Browse files
authored
Merge branch 'master' into remove-magento-team-check
2 parents cfcfd54 + 4090cb7 commit b7b2f9c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

checker/checker.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,12 @@ async function check_cla (ow, args) {
165165
if (response.userAgreementList && response.userAgreementList.length) {
166166
// We found agreements containing the github username to search through.
167167
const agreements = response.userAgreementList.filter(function (agreement) {
168-
return (agreement.status === 'SIGNED' && (agreement.name === 'Adobe Contributor License Agreement' || agreement.name === 'Adobe CLA'));
168+
return (
169+
(agreement.status === 'SIGNED' ||
170+
agreement.status === 'FORM_FILLED') &&
171+
(agreement.name === 'Adobe Contributor License Agreement' ||
172+
agreement.name === 'Adobe CLA')
173+
);
169174
}).map(function (agreement) {
170175
return agreement.agreementId;
171176
});

0 commit comments

Comments
 (0)