Skip to content

Commit

Permalink
Fix emoji (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajbos committed Dec 12, 2023
1 parent 0c5f57c commit 9a6b767
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35107,7 +35107,7 @@ Consider using \`git-lfs\` to manage large files.
${accidentalFilesList}
`;
// note: indentation is important here, as it is used to determine the code block
const body = `## Possible file(s) that should be tracked in LFS detected: :rotating_light:
const body = `## Possible file(s) that should be tracked in LFS detected: 🚨

${largeFiles.length > 0 ? largeFilesBody : ''}
${accidentallyCheckedInLsfFiles.length > 0
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ Consider using \`git-lfs\` to manage large files.
`;

// note: indentation is important here, as it is used to determine the code block
const body = `## Possible file(s) that should be tracked in LFS detected: :rotating_light:
const body = `## Possible file(s) that should be tracked in LFS detected: 🚨
${largeFiles.length > 0 ? largeFilesBody : ''}
${
Expand Down

0 comments on commit 9a6b767

Please sign in to comment.