Skip to content

Commit

Permalink
Update check-labels.js
Browse files Browse the repository at this point in the history
added explicit semicolon to address CodeQL alert
  • Loading branch information
t-will-gillis authored Nov 4, 2024
1 parent 404d50c commit 96779d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function main({ g, c }) {
const issueNum = context.payload.issue.number;
const issueTitle = context.payload.issue.title;
const templateTrigger = context.payload.issue.labels[0].name;
let labels = []
let labels = [];

// If the issue is a template, extract the labelKeys then convert to labels
if (templateTrigger === 'Template Label Placeholder') {
Expand Down

0 comments on commit 96779d9

Please sign in to comment.