Skip to content

Commit 58e4ab4

Browse files
authored
fix: Actually execute action (#289)
* fix: Run action * add template * templates
1 parent 04a8d17 commit 58e4ab4

File tree

6 files changed

+4
-2
lines changed

6 files changed

+4
-2
lines changed

dist/templates/commit.hbs

Whitespace-only changes.

dist/templates/footer.hbs

Whitespace-only changes.

dist/templates/header.hbs

Whitespace-only changes.

dist/templates/template.hbs

Whitespace-only changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"lint": "eslint src && prettier --check src",
99
"test": "vitest src",
10-
"build": "rm -rf dist && rollup -c"
10+
"build": "rollup -c"
1111
},
1212
"repository": {
1313
"type": "git",

src/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import github from '@actions/github';
33
import parseConfig from './parseConfig.js';
44
import validatePrTitle from './validatePrTitle.js';
55

6-
export default async function run() {
6+
async function run() {
77
try {
88
const {
99
types,
@@ -169,3 +169,5 @@ export default async function run() {
169169
core.setFailed(error.message);
170170
}
171171
}
172+
173+
await run();

0 commit comments

Comments
 (0)