File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,18 +50,18 @@ jobs:
50
50
// Check if any files match our patterns
51
51
const hasDocsChanges = files.some(file =>
52
52
file.filename.startsWith('docs/integrations/') ||
53
- file.filename.startsWith('docs/ static/')
53
+ file.filename.startsWith('static/images ')
54
54
);
55
55
56
56
console.log('Changed files:');
57
57
files.forEach(file => console.log(` ${file.filename}`));
58
58
59
59
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');
61
61
core.setOutput('docs_changed', 'true');
62
62
core.setOutput('requires_cla', 'true');
63
63
} 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');
65
65
core.setOutput('docs_changed', 'false');
66
66
core.setOutput('requires_cla', 'false');
67
67
}
You can’t perform that action at this time.
0 commit comments