Undo unwanted change in diff

This commit is contained in:
Alexander Kachkaev
2023-05-31 01:49:55 +01:00
parent 97762039fe
commit a27020c135

View File

@@ -15,7 +15,7 @@ export async function run() {
try {
const token = core.getInput('repo-token');
const configPath = core.getInput('configuration-path', {required: true});
const syncLabels = core.getBooleanInput('sync-labels', {required: false});
const syncLabels = !!core.getBooleanInput('sync-labels', {required: false});
const dot = !!core.getBooleanInput('dot', {required: false});
const prNumber = getPrNumber();