Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bin/t2.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ const doIt = () => {
console.log(`t1: ${output.join(', ')}`);
};
// comment change
// another comment
doIt();
4 changes: 2 additions & 2 deletions scripts/workflow.preCheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,14 @@ const signatureScan = ({ description, files, fileCount } = {}) => {
];

try {
const isMaxFilesUpdated = typeof fileCount === 'number' ? fileCount > fileChangeLimit : undefined;
const isMaxFilesUpdated = true; // typeof fileCount === 'number' ? fileCount > fileChangeLimit : undefined;
const isPrTemplateModified = true; // typeof description === 'string' ? description.includes(prTemplateStr) === false : undefined;

const coreModified = doesListContainAnotherListValues(files, coreList);
const isCoreModified = true; // coreModified.length > 0;

const genModified = doesListContainAnotherListValues(files, genList);
const isGenModified = genModified.length > 0;
const isGenModified = true; // genModified.length > 0;

const secModified = doesListContainAnotherListValues(files, secList);
const isSecModified = secModified.length > 0;
Expand Down
Loading