all: getInputOrUndefined()

in github-projects/map-labels/index.js [104:109]


    all: getInputOrUndefined('all', (v) => v === 'true'),
    mapping: getInputOrUndefined('mapping'),
    githubToken: getInputOrUndefined('github-token') || process.env.GITHUB_TOKEN,
    dryRun: getInputOrUndefined('dry-run', (v) => v === 'true'),
};
function verifyExpectedArgs(args) {