Skip to content

Commit

Permalink
fix syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudTT committed Sep 18, 2024
1 parent a45ff51 commit c6f4f3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/lint-and-license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
with:
script: |
const lintOutput = process.env.COMBINED_ERRORS;
const issueNumber = context.issue.number || context.payload.pull_request.number;
const issueNumber = context.payload.pull_request.number;
const owner = context.repo.owner;
const repo = context.repo.repo;
Expand All @@ -99,6 +99,7 @@ jobs:
});
} else {
console.log("No relevant errors to report.");
}
- name: Fail if Errors Exist
if: env.HAS_ERRORS == 'true'
Expand Down

0 comments on commit c6f4f3d

Please sign in to comment.