Skip to content

Commit

Permalink
Remove useless required specifier.
Browse files Browse the repository at this point in the history
Co-authored-by: MaksimZhukov <46996400+MaksimZhukov@users.noreply.github.com>
  • Loading branch information
adam-azarchs and MaksimZhukov authored Jan 17, 2023
1 parent d56bb13 commit e273ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/labeler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export async function run() {
try {
const token = core.getInput('repo-token', {required: true});
const configPath = core.getInput('configuration-path', {required: true});
const syncLabels = core.getBooleanInput('sync-labels', {required: false});
const syncLabels = core.getBooleanInput('sync-labels');

const prNumber = getPrNumber();
if (!prNumber) {
Expand Down

0 comments on commit e273ca4

Please sign in to comment.