diff --git a/index.js b/index.js index 52ed6ec..f409ea6 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,6 @@ const core = require('@actions/core'); const github = require('@actions/github'); +const helloWorldModule = require('./module.js'); function parsePatch(patch) { const added = []; diff --git a/package.json b/package.json index 6fdada7..f6a62c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pr-metadata-action", - "version": "1.0.0", + "version": "1.0.1", "description": "", "main": "index.js", "scripts": { @@ -14,4 +14,4 @@ "@actions/github": "^5.1.1", "@vercel/ncc": "^0.36.1" } -} \ No newline at end of file +}