diff --git a/action.yml b/action.yml index 121a467..110fe1a 100644 --- a/action.yml +++ b/action.yml @@ -1,8 +1,8 @@ name: 'Create a Branch' description: 'Create a Branch from tag/release' -author: 'Muhammad Umer Farooq' +author: 'TCBarrett' inputs: - tag_name: + tag_ref: description: 'The name of the tag. This should come from the webhook payload, `github.GITHUB_REF` when a user pushes a new tag' required: true owner: @@ -14,10 +14,12 @@ inputs: outputs: branch_name: description: 'The Branch Name of the created branch' + tag_name: + description: 'The Tag Name (not the tag_ref passed into GitHub). branch_url: description: 'The URL users can navigate to in order to view the branch' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js' branding: icon: 'tag' diff --git a/package-lock.json b/package-lock.json index 7e84ea0..e50da20 100644 --- a/package-lock.json +++ b/package-lock.json @@ -170,9 +170,9 @@ } }, "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.8.tgz", + "integrity": "sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -387,9 +387,9 @@ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" }, "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.8.tgz", + "integrity": "sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==", "requires": { "whatwg-url": "^5.0.0" } diff --git a/package.json b/package.json index ff9b5ff..7614ed0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "create-branch-from-tag", - "version": "1.0.0", + "version": "1.1.1", "description": "", "main": "index.js", "scripts": { @@ -13,12 +13,12 @@ "url": "git+https://github.com/lablnet/create-branch-from-tag.git" }, "keywords": [], - "author": "Muhammad Umer Farooq", + "author": "TCBarrett (originally: Muhammad Umer Farooq)", "license": "MIT", "bugs": { "url": "https://github.com/lablnet/create-branch-from-tag/issues" }, - "homepage": "https://github.com/lablnet/create-branch-from-tag#readme", + "homepage": "https://github.com/tdsultratom/create-branch-from-tag#readme", "dependencies": { "@actions/core": "^1.8.2", "@actions/github": "^5.0.3",