mirror of
https://github.com/actions/labeler.git
synced 2025-12-11 12:07:32 +00:00
Remove required: false
This commit is contained in:
@@ -15,8 +15,8 @@ export async function run() {
|
||||
try {
|
||||
const token = core.getInput('repo-token');
|
||||
const configPath = core.getInput('configuration-path', {required: true});
|
||||
const syncLabels = !!core.getInput('sync-labels', {required: false});
|
||||
const dot = !!core.getInput('dot', {required: false});
|
||||
const syncLabels = !!core.getInput('sync-labels');
|
||||
const dot = !!core.getInput('dot');
|
||||
|
||||
const prNumber = getPrNumber();
|
||||
if (!prNumber) {
|
||||
|
||||
Reference in New Issue
Block a user