We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04a8d17 commit 58e4ab4Copy full SHA for 58e4ab4
6 files changed
dist/templates/commit.hbs
dist/templates/footer.hbs
dist/templates/header.hbs
dist/templates/template.hbs
package.json
@@ -7,7 +7,7 @@
7
"scripts": {
8
"lint": "eslint src && prettier --check src",
9
"test": "vitest src",
10
- "build": "rm -rf dist && rollup -c"
+ "build": "rollup -c"
11
},
12
"repository": {
13
"type": "git",
src/index.js
@@ -3,7 +3,7 @@ import github from '@actions/github';
3
import parseConfig from './parseConfig.js';
4
import validatePrTitle from './validatePrTitle.js';
5
6
-export default async function run() {
+async function run() {
try {
const {
types,
@@ -169,3 +169,5 @@ export default async function run() {
169
core.setFailed(error.message);
170
}
171
172
+
173
+await run();
0 commit comments