diff --git a/app.js b/app.js index 4b474ef..5abb614 100644 --- a/app.js +++ b/app.js @@ -8,7 +8,7 @@ const {updateChangelog} = require("./lib/update-changelog") const {workflowRunRetry} = require("./lib/workflow_run-retry") const {cleanupCaches} = require("./lib/cleanup-action-caches") -module.exports = async (app, options) => { +module.exports = (app, options) => { app.log.info("Yay, the app was loaded!") welcome(app) @@ -27,6 +27,6 @@ module.exports = async (app, options) => { workflowRunRetry(app) - await releaseDrafter(app, options) + releaseDrafter(app, options) }