function getAnnotationLevel()

in lib/main.js [22:30]


function getAnnotationLevel() {
    let val = core.getInput('annotation_level');
    if (!val) {
        return 'failure';
    }
    else {
        return val;
    }
}