Skip to content

Commit 4090cb7

Browse files
committed
Update checker to use new sign doc
1 parent 18b18e0 commit 4090cb7

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
@@ -182,7 +182,12 @@ async function check_cla (ow, args) {
182182
if (response.userAgreementList && response.userAgreementList.length) {
183183
// We found agreements containing the github username to search through.
184184
const agreements = response.userAgreementList.filter(function (agreement) {
185-
return (agreement.status === 'SIGNED' && (agreement.name === 'Adobe Contributor License Agreement' || agreement.name === 'Adobe CLA'));
185+
return (
186+
(agreement.status === 'SIGNED' ||
187+
agreement.status === 'FORM_FILLED') &&
188+
(agreement.name === 'Adobe Contributor License Agreement' ||
189+
agreement.name === 'Adobe CLA')
190+
);
186191
}).map(function (agreement) {
187192
return agreement.agreementId;
188193
});

0 commit comments

Comments
 (0)