Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
Signed-off-by: Sachin Panayil <[email protected]>
  • Loading branch information
sachin-panayil committed Dec 23, 2024
1 parent c30fca5 commit f2c2dea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,8 @@ function run(disableRetry) {
core.startGroup('Sending a PR');
try {
const [owner, repo] = REPO.split('/');
const cleanedLabels = LABELS.split(",");
const originalLables = LABELS.replace(/\s/g, "");
const cleanedLabels = originalLables.split(",");
const jsonOutput = repolinter_1.jsonFormatter.formatOutput(result, true);
const files = getFileChanges_1.getFileChanges(jsonOutput);
if (Object.keys(files).length !== 0) {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ export default async function run(disableRetry?: boolean): Promise<void> {

try {
const [owner, repo] = REPO.split('/')
const cleanedLabels = LABELS.split(",")
const originalLables = LABELS.replace(/\s/g, "");
const cleanedLabels = originalLables.split(",")

const jsonOutput = jsonFormatter.formatOutput(result, true)
const files = getFileChanges(jsonOutput)
Expand Down

0 comments on commit f2c2dea

Please sign in to comment.