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
2 changes: 1 addition & 1 deletion communicate-on-pull-request-merged/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"description": "An action for adding comments and labels to a pull request when it is merged",
"scripts": {
"build": "ncc build src/main.ts --license licenses.txt -o lib",
"build": "ncc build src/index.ts --license licenses.txt -o lib",
"format": "prettier --write **/*.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest"
},
Expand Down
3 changes: 3 additions & 0 deletions communicate-on-pull-request-merged/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import {run} from './main.js';

run();
2 changes: 1 addition & 1 deletion communicate-on-pull-request-released/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"description": "An action for adding comments and labels to a pull request and referenced issue when the pull request is released",
"scripts": {
"build": "ncc build src/main.ts --license licenses.txt -o lib",
"build": "ncc build src/index.ts --license licenses.txt -o lib",
"format": "prettier --write **/*.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest"
},
Expand Down
3 changes: 3 additions & 0 deletions communicate-on-pull-request-released/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import {run} from './main.js';

run();
Loading