File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,12 @@ async function check_cla (ow, args) {
182
182
if ( response . userAgreementList && response . userAgreementList . length ) {
183
183
// We found agreements containing the github username to search through.
184
184
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
+ ) ;
186
191
} ) . map ( function ( agreement ) {
187
192
return agreement . agreementId ;
188
193
} ) ;
You can’t perform that action at this time.
0 commit comments