We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18b18e0 commit 4090cb7Copy full SHA for 4090cb7
checker/checker.js
@@ -182,7 +182,12 @@ async function check_cla (ow, args) {
182
if (response.userAgreementList && response.userAgreementList.length) {
183
// We found agreements containing the github username to search through.
184
const agreements = response.userAgreementList.filter(function (agreement) {
185
- return (agreement.status === 'SIGNED' && (agreement.name === 'Adobe Contributor License Agreement' || agreement.name === 'Adobe CLA'));
+ return (
186
+ (agreement.status === 'SIGNED' ||
187
+ agreement.status === 'FORM_FILLED') &&
188
+ (agreement.name === 'Adobe Contributor License Agreement' ||
189
+ agreement.name === 'Adobe CLA')
190
+ );
191
}).map(function (agreement) {
192
return agreement.agreementId;
193
});
0 commit comments