From a7eb4a432766b8951a4b9bd9c58332c2261e43b5 Mon Sep 17 00:00:00 2001 From: Henry Date: Sat, 26 Oct 2024 17:08:51 +0800 Subject: [PATCH] =?UTF-8?q?test:=20=E6=B5=8B=E8=AF=95=20release-drafter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) }