Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added dist/templates/commit.hbs
Empty file.
Empty file added dist/templates/footer.hbs
Empty file.
Empty file added dist/templates/header.hbs
Empty file.
Empty file added dist/templates/template.hbs
Empty file.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"lint": "eslint src && prettier --check src",
"test": "vitest src",
"build": "rm -rf dist && rollup -c"
"build": "rollup -c"
},
"repository": {
"type": "git",
Expand Down
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import github from '@actions/github';
import parseConfig from './parseConfig.js';
import validatePrTitle from './validatePrTitle.js';

export default async function run() {
async function run() {
try {
const {
types,
Expand Down Expand Up @@ -169,3 +169,5 @@ export default async function run() {
core.setFailed(error.message);
}
}

await run();
Loading