Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
BrusR committed Dec 6, 2024
1 parent d69ee93 commit d4c33bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const github = require('@actions/github');

class Config {
constructor() {
let label_list = JSON.parse(core.getInput('labels'));
let mode_option = core.getInput('mode')
const label_list = JSON.parse(core.getInput('labels'));
const mode_option = core.getInput('mode')
if (mode_option === 'start'){
label_list.push(this.generateUniqueLabel())
}
Expand Down

0 comments on commit d4c33bd

Please sign in to comment.