in src/publish.js [104:117]
function publishStatus(context, options = {}) {
return actionStatus(
Object.assign(
{
context: `publish ${context.name}`,
// note: these need to be empty so that action-status
// doesn't throw an error w/o "required" env vars
description: '',
url: ''
},
options
)
)
}