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
File renamed without changes.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
required: true
runs:
using: 'node16'
main: './src/develop_actions.js'
main: './src/actions.js'

branding:
icon: 'package'
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "automate pull request",
"name": "automate-pull-request",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf action && ncc build src/develop_actions.js -o action",
"start": "babel-node src/develop_actions.js",
"build": "rm -rf action && ncc build src/actions.js -o action",
"start": "babel-node src/actions.js",
"deploy":"cd src && zip -r -D test.zip .",
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand Down
File renamed without changes.