import * as core from '@actions/core' async function run(): Promise { try { core.info('TODO') } catch (error) { core.setFailed(error.message) } } run()