Skip to content

Commit 3cab8b9

Browse files
authored
Update trademark-cla-notice.yml
1 parent e143dae commit 3cab8b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/trademark-cla-notice.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,18 @@ jobs:
5050
// Check if any files match our patterns
5151
const hasDocsChanges = files.some(file =>
5252
file.filename.startsWith('docs/integrations/') ||
53-
file.filename.startsWith('docs/static/')
53+
file.filename.startsWith('static/images')
5454
);
5555
5656
console.log('Changed files:');
5757
files.forEach(file => console.log(` ${file.filename}`));
5858
5959
if (hasDocsChanges) {
60-
console.log('Found changes in docs/integrations/ or docs/static/ - CLA required');
60+
console.log('Found changes in docs/integrations/ or static/images - trademark addendum signature required');
6161
core.setOutput('docs_changed', 'true');
6262
core.setOutput('requires_cla', 'true');
6363
} else {
64-
console.log('No changes found in docs/integrations/ or docs/static/ - CLA not required');
64+
console.log('No changes found in docs/integrations/ or static/images - trademark addendum signature not required');
6565
core.setOutput('docs_changed', 'false');
6666
core.setOutput('requires_cla', 'false');
6767
}

0 commit comments

Comments
 (0)