Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0cb9c9b65d | ||
|
|
8868c043d3 | ||
|
|
7c69cb4ced | ||
|
|
818a8f0696 | ||
|
|
1e92f6fc66 | ||
|
|
653bc6fb02 | ||
|
|
e7b3139eb2 | ||
|
|
705dd14f2c | ||
|
|
c068e8508e | ||
|
|
89e8dc2362 | ||
|
|
44853f236d | ||
|
|
25a1bf7b59 | ||
|
|
91b6c4e353 | ||
|
|
d3311befb6 | ||
|
|
8210505c40 | ||
|
|
84b30a2ce1 | ||
|
|
e9dc4ac22d | ||
|
|
62b2b8381c | ||
|
|
d28992e4ca | ||
|
|
80985fc475 | ||
|
|
ec9ee66a82 | ||
|
|
e9cf5d96f3 | ||
|
|
f37d718ae9 | ||
|
|
9d21c8a3f2 | ||
|
|
7424051c44 | ||
|
|
d16f41536b | ||
|
|
b77c216cf6 | ||
|
|
3cd5bbb314 | ||
|
|
e0754ec952 | ||
|
|
6d0973ee39 | ||
|
|
c06331b12c | ||
|
|
76860a04af | ||
|
|
15708f2a34 | ||
|
|
cf2e5a0ea5 | ||
|
|
bfe866faf6 | ||
|
|
1a72e235c1 | ||
|
|
2b67105e25 |
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -4,7 +4,7 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
branches: # array of glob patterns matching against refs/heads. Optional; defaults to all
|
branches: # array of glob patterns matching against refs/heads. Optional; defaults to all
|
||||||
- master # triggers on pushes that contain changes in master
|
- main # triggers on pushes that contain changes in main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
|||||||
52
.github/workflows/codeql.yml
vendored
Normal file
52
.github/workflows/codeql.yml
vendored
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
name: "Code scanning - action"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 19 * * 0'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
CodeQL-Build:
|
||||||
|
|
||||||
|
# CodeQL runs on ubuntu-latest and windows-latest
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
# We must fetch at least the immediate parents so that if this is
|
||||||
|
# a pull request then we can checkout the head.
|
||||||
|
fetch-depth: 2
|
||||||
|
|
||||||
|
# If this run was triggered by a pull request event, then checkout
|
||||||
|
# the head of the pull request instead of the merge commit.
|
||||||
|
- run: git checkout HEAD^2
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
|
||||||
|
# Initializes the CodeQL tools for scanning.
|
||||||
|
- name: Initialize CodeQL
|
||||||
|
uses: github/codeql-action/init@v1
|
||||||
|
# Override language selection by uncommenting this and choosing your languages
|
||||||
|
# with:
|
||||||
|
# languages: go, javascript, csharp, python, cpp, java
|
||||||
|
|
||||||
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
|
- name: Autobuild
|
||||||
|
uses: github/codeql-action/autobuild@v1
|
||||||
|
|
||||||
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
|
# 📚 https://git.io/JvXDl
|
||||||
|
|
||||||
|
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||||||
|
# and modify them (or add more) to build your code if your project
|
||||||
|
# uses a compiled language
|
||||||
|
|
||||||
|
#- run: |
|
||||||
|
# make bootstrap
|
||||||
|
# make release
|
||||||
|
|
||||||
|
- name: Perform CodeQL Analysis
|
||||||
|
uses: github/codeql-action/analyze@v1
|
||||||
11
README.md
11
README.md
@@ -12,9 +12,16 @@ For more information on these inputs, see the [API Documentation](https://develo
|
|||||||
|
|
||||||
- `tag_name`: The name of the tag for this release
|
- `tag_name`: The name of the tag for this release
|
||||||
- `release_name`: The name of the release
|
- `release_name`: The name of the release
|
||||||
- `body`: Text describing the contents of the release
|
- `body`: Text describing the contents of the release. Optional, and not needed if using `body_path`.
|
||||||
|
- `body_path`: A file with contents describing the release. Optional, and not needed if using `body`.
|
||||||
- `draft`: `true` to create a draft (unpublished) release, `false` to create a published one. Default: `false`
|
- `draft`: `true` to create a draft (unpublished) release, `false` to create a published one. Default: `false`
|
||||||
- `prerelease`: `true` to identify the release as a prerelease. `false` to identify the release as a full release. Default `false`
|
- `prerelease`: `true` to identify the release as a prerelease. `false` to identify the release as a full release. Default: `false`
|
||||||
|
- `commitish` : Any branch or commit SHA the Git tag is created from, unused if the Git tag already exists. Default: SHA of current commit
|
||||||
|
- `owner`: The name of the owner of the repo. Used to identify the owner of the repository. Used when cutting releases for external repositories. Default: Current owner
|
||||||
|
- `repo`: The name of the repository. Used to identify the repository on which to release. Used when cutting releases for external repositories. Default: Current repository
|
||||||
|
|
||||||
|
#### `body_path`
|
||||||
|
The `body_path` is valuable for dynamically creating a `.md` within code commits and even within the Github Action steps leading up to the `create-release`.
|
||||||
|
|
||||||
### Outputs
|
### Outputs
|
||||||
For more information on these outputs, see the [API Documentation](https://developer.github.com/v3/repos/releases/#response-4) for an example of what these outputs look like
|
For more information on these outputs, see the [API Documentation](https://developer.github.com/v3/repos/releases/#response-4) for an example of what these outputs look like
|
||||||
|
|||||||
12
action.yml
12
action.yml
@@ -11,6 +11,9 @@ inputs:
|
|||||||
body:
|
body:
|
||||||
description: 'Text describing the contents of the tag.'
|
description: 'Text describing the contents of the tag.'
|
||||||
required: false
|
required: false
|
||||||
|
body_path:
|
||||||
|
description: 'Path to file with information about the tag.'
|
||||||
|
required: false
|
||||||
draft:
|
draft:
|
||||||
description: '`true` to create a draft (unpublished) release, `false` to create a published one. Default: `false`'
|
description: '`true` to create a draft (unpublished) release, `false` to create a published one. Default: `false`'
|
||||||
required: false
|
required: false
|
||||||
@@ -19,6 +22,15 @@ inputs:
|
|||||||
description: '`true` to identify the release as a prerelease. `false` to identify the release as a full release. Default: `false`'
|
description: '`true` to identify the release as a prerelease. `false` to identify the release as a full release. Default: `false`'
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
|
commitish:
|
||||||
|
description: 'Any branch or commit SHA the Git tag is created from, unused if the Git tag already exists. Default: SHA of current commit'
|
||||||
|
required: false
|
||||||
|
owner:
|
||||||
|
description: 'Owner of the repository if it is not the current one'
|
||||||
|
required: false
|
||||||
|
repo:
|
||||||
|
description: 'Repository on which to release. Used only if you want to create the release on another repo'
|
||||||
|
required: false
|
||||||
outputs:
|
outputs:
|
||||||
id:
|
id:
|
||||||
description: 'The ID of the created Release'
|
description: 'The ID of the created Release'
|
||||||
|
|||||||
25
dist/index.js
vendored
25
dist/index.js
vendored
@@ -2012,7 +2012,7 @@ module.exports = require("https");
|
|||||||
/***/ 215:
|
/***/ 215:
|
||||||
/***/ (function(module) {
|
/***/ (function(module) {
|
||||||
|
|
||||||
module.exports = {"_from":"@octokit/rest@^16.43.1","_id":"@octokit/rest@16.43.1","_inBundle":false,"_integrity":"sha512-gfFKwRT/wFxq5qlNjnW2dh+qh74XgTQ2B179UX5K1HYCluioWj8Ndbgqw2PVqa1NnVJkGHp2ovMpVn/DImlmkw==","_location":"/@octokit/rest","_phantomChildren":{"@octokit/types":"2.16.0","deprecation":"2.3.1","once":"1.4.0","os-name":"3.1.0"},"_requested":{"type":"range","registry":true,"raw":"@octokit/rest@^16.43.1","name":"@octokit/rest","escapedName":"@octokit%2frest","scope":"@octokit","rawSpec":"^16.43.1","saveSpec":null,"fetchSpec":"^16.43.1"},"_requiredBy":["/@actions/github"],"_resolved":"https://registry.npmjs.org/@octokit/rest/-/rest-16.43.1.tgz","_shasum":"3b11e7d1b1ac2bbeeb23b08a17df0b20947eda6b","_spec":"@octokit/rest@^16.43.1","_where":"/Users/pjquirk/Source/GitHub/actions/create-release/node_modules/@actions/github","author":{"name":"Gregor Martynus","url":"https://github.com/gr2m"},"bugs":{"url":"https://github.com/octokit/rest.js/issues"},"bundleDependencies":false,"bundlesize":[{"path":"./dist/octokit-rest.min.js.gz","maxSize":"33 kB"}],"contributors":[{"name":"Mike de Boer","email":"info@mikedeboer.nl"},{"name":"Fabian Jakobs","email":"fabian@c9.io"},{"name":"Joe Gallo","email":"joe@brassafrax.com"},{"name":"Gregor Martynus","url":"https://github.com/gr2m"}],"dependencies":{"@octokit/auth-token":"^2.4.0","@octokit/plugin-paginate-rest":"^1.1.1","@octokit/plugin-request-log":"^1.0.0","@octokit/plugin-rest-endpoint-methods":"2.4.0","@octokit/request":"^5.2.0","@octokit/request-error":"^1.0.2","atob-lite":"^2.0.0","before-after-hook":"^2.0.0","btoa-lite":"^1.0.0","deprecation":"^2.0.0","lodash.get":"^4.4.2","lodash.set":"^4.3.2","lodash.uniq":"^4.5.0","octokit-pagination-methods":"^1.1.0","once":"^1.4.0","universal-user-agent":"^4.0.0"},"deprecated":false,"description":"GitHub REST API client for Node.js","devDependencies":{"@gimenete/type-writer":"^0.1.3","@octokit/auth":"^1.1.1","@octokit/fixtures-server":"^5.0.6","@octokit/graphql":"^4.2.0","@types/node":"^13.1.0","bundlesize":"^0.18.0","chai":"^4.1.2","compression-webpack-plugin":"^3.1.0","cypress":"^3.0.0","glob":"^7.1.2","http-proxy-agent":"^4.0.0","lodash.camelcase":"^4.3.0","lodash.merge":"^4.6.1","lodash.upperfirst":"^4.3.1","lolex":"^5.1.2","mkdirp":"^1.0.0","mocha":"^7.0.1","mustache":"^4.0.0","nock":"^11.3.3","npm-run-all":"^4.1.2","nyc":"^15.0.0","prettier":"^1.14.2","proxy":"^1.0.0","semantic-release":"^17.0.0","sinon":"^8.0.0","sinon-chai":"^3.0.0","sort-keys":"^4.0.0","string-to-arraybuffer":"^1.0.0","string-to-jsdoc-comment":"^1.0.0","typescript":"^3.3.1","webpack":"^4.0.0","webpack-bundle-analyzer":"^3.0.0","webpack-cli":"^3.0.0"},"files":["index.js","index.d.ts","lib","plugins"],"homepage":"https://github.com/octokit/rest.js#readme","keywords":["octokit","github","rest","api-client"],"license":"MIT","name":"@octokit/rest","nyc":{"ignore":["test"]},"publishConfig":{"access":"public"},"release":{"publish":["@semantic-release/npm",{"path":"@semantic-release/github","assets":["dist/*","!dist/*.map.gz"]}]},"repository":{"type":"git","url":"git+https://github.com/octokit/rest.js.git"},"scripts":{"build":"npm-run-all build:*","build:browser":"npm-run-all build:browser:*","build:browser:development":"webpack --mode development --entry . --output-library=Octokit --output=./dist/octokit-rest.js --profile --json > dist/bundle-stats.json","build:browser:production":"webpack --mode production --entry . --plugin=compression-webpack-plugin --output-library=Octokit --output-path=./dist --output-filename=octokit-rest.min.js --devtool source-map","build:ts":"npm run -s update-endpoints:typescript","coverage":"nyc report --reporter=html && open coverage/index.html","generate-bundle-report":"webpack-bundle-analyzer dist/bundle-stats.json --mode=static --no-open --report dist/bundle-report.html","lint":"prettier --check '{lib,plugins,scripts,test}/**/*.{js,json,ts}' 'docs/*.{js,json}' 'docs/src/**/*' index.js README.md package.json","lint:fix":"prettier --write '{lib,plugins,scripts,test}/**/*.{js,json,ts}' 'docs/*.{js,json}' 'docs/src/**/*' index.js README.md package.json","postvalidate:ts":"tsc --noEmit --target es6 test/typescript-validate.ts","prebuild:browser":"mkdirp dist/","pretest":"npm run -s lint","prevalidate:ts":"npm run -s build:ts","start-fixtures-server":"octokit-fixtures-server","test":"nyc mocha test/mocha-node-setup.js \"test/*/**/*-test.js\"","test:browser":"cypress run --browser chrome","update-endpoints":"npm-run-all update-endpoints:*","update-endpoints:fetch-json":"node scripts/update-endpoints/fetch-json","update-endpoints:typescript":"node scripts/update-endpoints/typescript","validate:ts":"tsc --target es6 --noImplicitAny index.d.ts"},"types":"index.d.ts","version":"16.43.1"};
|
module.exports = {"_args":[["@octokit/rest@16.43.1","/Users/chocrates/workspace/create-release"]],"_from":"@octokit/rest@16.43.1","_id":"@octokit/rest@16.43.1","_inBundle":false,"_integrity":"sha512-gfFKwRT/wFxq5qlNjnW2dh+qh74XgTQ2B179UX5K1HYCluioWj8Ndbgqw2PVqa1NnVJkGHp2ovMpVn/DImlmkw==","_location":"/@octokit/rest","_phantomChildren":{"@octokit/types":"2.16.0","deprecation":"2.3.1","once":"1.4.0","os-name":"3.1.0"},"_requested":{"type":"version","registry":true,"raw":"@octokit/rest@16.43.1","name":"@octokit/rest","escapedName":"@octokit%2frest","scope":"@octokit","rawSpec":"16.43.1","saveSpec":null,"fetchSpec":"16.43.1"},"_requiredBy":["/@actions/github"],"_resolved":"https://registry.npmjs.org/@octokit/rest/-/rest-16.43.1.tgz","_spec":"16.43.1","_where":"/Users/chocrates/workspace/create-release","author":{"name":"Gregor Martynus","url":"https://github.com/gr2m"},"bugs":{"url":"https://github.com/octokit/rest.js/issues"},"bundlesize":[{"path":"./dist/octokit-rest.min.js.gz","maxSize":"33 kB"}],"contributors":[{"name":"Mike de Boer","email":"info@mikedeboer.nl"},{"name":"Fabian Jakobs","email":"fabian@c9.io"},{"name":"Joe Gallo","email":"joe@brassafrax.com"},{"name":"Gregor Martynus","url":"https://github.com/gr2m"}],"dependencies":{"@octokit/auth-token":"^2.4.0","@octokit/plugin-paginate-rest":"^1.1.1","@octokit/plugin-request-log":"^1.0.0","@octokit/plugin-rest-endpoint-methods":"2.4.0","@octokit/request":"^5.2.0","@octokit/request-error":"^1.0.2","atob-lite":"^2.0.0","before-after-hook":"^2.0.0","btoa-lite":"^1.0.0","deprecation":"^2.0.0","lodash.get":"^4.4.2","lodash.set":"^4.3.2","lodash.uniq":"^4.5.0","octokit-pagination-methods":"^1.1.0","once":"^1.4.0","universal-user-agent":"^4.0.0"},"description":"GitHub REST API client for Node.js","devDependencies":{"@gimenete/type-writer":"^0.1.3","@octokit/auth":"^1.1.1","@octokit/fixtures-server":"^5.0.6","@octokit/graphql":"^4.2.0","@types/node":"^13.1.0","bundlesize":"^0.18.0","chai":"^4.1.2","compression-webpack-plugin":"^3.1.0","cypress":"^3.0.0","glob":"^7.1.2","http-proxy-agent":"^4.0.0","lodash.camelcase":"^4.3.0","lodash.merge":"^4.6.1","lodash.upperfirst":"^4.3.1","lolex":"^5.1.2","mkdirp":"^1.0.0","mocha":"^7.0.1","mustache":"^4.0.0","nock":"^11.3.3","npm-run-all":"^4.1.2","nyc":"^15.0.0","prettier":"^1.14.2","proxy":"^1.0.0","semantic-release":"^17.0.0","sinon":"^8.0.0","sinon-chai":"^3.0.0","sort-keys":"^4.0.0","string-to-arraybuffer":"^1.0.0","string-to-jsdoc-comment":"^1.0.0","typescript":"^3.3.1","webpack":"^4.0.0","webpack-bundle-analyzer":"^3.0.0","webpack-cli":"^3.0.0"},"files":["index.js","index.d.ts","lib","plugins"],"homepage":"https://github.com/octokit/rest.js#readme","keywords":["octokit","github","rest","api-client"],"license":"MIT","name":"@octokit/rest","nyc":{"ignore":["test"]},"publishConfig":{"access":"public"},"release":{"publish":["@semantic-release/npm",{"path":"@semantic-release/github","assets":["dist/*","!dist/*.map.gz"]}]},"repository":{"type":"git","url":"git+https://github.com/octokit/rest.js.git"},"scripts":{"build":"npm-run-all build:*","build:browser":"npm-run-all build:browser:*","build:browser:development":"webpack --mode development --entry . --output-library=Octokit --output=./dist/octokit-rest.js --profile --json > dist/bundle-stats.json","build:browser:production":"webpack --mode production --entry . --plugin=compression-webpack-plugin --output-library=Octokit --output-path=./dist --output-filename=octokit-rest.min.js --devtool source-map","build:ts":"npm run -s update-endpoints:typescript","coverage":"nyc report --reporter=html && open coverage/index.html","generate-bundle-report":"webpack-bundle-analyzer dist/bundle-stats.json --mode=static --no-open --report dist/bundle-report.html","lint":"prettier --check '{lib,plugins,scripts,test}/**/*.{js,json,ts}' 'docs/*.{js,json}' 'docs/src/**/*' index.js README.md package.json","lint:fix":"prettier --write '{lib,plugins,scripts,test}/**/*.{js,json,ts}' 'docs/*.{js,json}' 'docs/src/**/*' index.js README.md package.json","postvalidate:ts":"tsc --noEmit --target es6 test/typescript-validate.ts","prebuild:browser":"mkdirp dist/","pretest":"npm run -s lint","prevalidate:ts":"npm run -s build:ts","start-fixtures-server":"octokit-fixtures-server","test":"nyc mocha test/mocha-node-setup.js \"test/*/**/*-test.js\"","test:browser":"cypress run --browser chrome","update-endpoints":"npm-run-all update-endpoints:*","update-endpoints:fetch-json":"node scripts/update-endpoints/fetch-json","update-endpoints:typescript":"node scripts/update-endpoints/typescript","validate:ts":"tsc --target es6 --noImplicitAny index.d.ts"},"types":"index.d.ts","version":"16.43.1"};
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
@@ -8781,6 +8781,7 @@ exports.request = request;
|
|||||||
|
|
||||||
const core = __webpack_require__(470);
|
const core = __webpack_require__(470);
|
||||||
const { GitHub, context } = __webpack_require__(469);
|
const { GitHub, context } = __webpack_require__(469);
|
||||||
|
const fs = __webpack_require__(747);
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
try {
|
try {
|
||||||
@@ -8788,17 +8789,30 @@ async function run() {
|
|||||||
const github = new GitHub(process.env.GITHUB_TOKEN);
|
const github = new GitHub(process.env.GITHUB_TOKEN);
|
||||||
|
|
||||||
// Get owner and repo from context of payload that triggered the action
|
// Get owner and repo from context of payload that triggered the action
|
||||||
const { owner, repo } = context.repo;
|
const { owner: currentOwner, repo: currentRepo } = context.repo;
|
||||||
|
|
||||||
// Get the inputs from the workflow file: https://github.com/actions/toolkit/tree/master/packages/core#inputsoutputs
|
// Get the inputs from the workflow file: https://github.com/actions/toolkit/tree/master/packages/core#inputsoutputs
|
||||||
const tagName = core.getInput('tag_name', { required: true });
|
const tagName = core.getInput('tag_name', { required: true });
|
||||||
|
|
||||||
// This removes the 'refs/tags' portion of the string, i.e. from 'refs/tags/v1.10.15' to 'v1.10.15'
|
// This removes the 'refs/tags' portion of the string, i.e. from 'refs/tags/v1.10.15' to 'v1.10.15'
|
||||||
const tag = tagName.replace('refs/tags/', '');
|
const tag = tagName.replace('refs/tags/', '');
|
||||||
const releaseName = core.getInput('release_name', { required: true }).replace('refs/tags/', '');
|
const releaseName = core.getInput('release_name', { required: false }).replace('refs/tags/', '');
|
||||||
const body = core.getInput('body', { required: false });
|
const body = core.getInput('body', { required: false });
|
||||||
const draft = core.getInput('draft', { required: false }) === 'true';
|
const draft = core.getInput('draft', { required: false }) === 'true';
|
||||||
const prerelease = core.getInput('prerelease', { required: false }) === 'true';
|
const prerelease = core.getInput('prerelease', { required: false }) === 'true';
|
||||||
|
const commitish = core.getInput('commitish', { required: false }) || context.sha;
|
||||||
|
|
||||||
|
const bodyPath = core.getInput('body_path', { required: false });
|
||||||
|
const owner = core.getInput('owner', { required: false }) || currentOwner;
|
||||||
|
const repo = core.getInput('repo', { required: false }) || currentRepo;
|
||||||
|
let bodyFileContent = null;
|
||||||
|
if (bodyPath !== '' && !!bodyPath) {
|
||||||
|
try {
|
||||||
|
bodyFileContent = fs.readFileSync(bodyPath, { encoding: 'utf8' });
|
||||||
|
} catch (error) {
|
||||||
|
core.setFailed(error.message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Create a release
|
// Create a release
|
||||||
// API Documentation: https://developer.github.com/v3/repos/releases/#create-a-release
|
// API Documentation: https://developer.github.com/v3/repos/releases/#create-a-release
|
||||||
@@ -8808,9 +8822,10 @@ async function run() {
|
|||||||
repo,
|
repo,
|
||||||
tag_name: tag,
|
tag_name: tag,
|
||||||
name: releaseName,
|
name: releaseName,
|
||||||
body,
|
body: bodyFileContent || body,
|
||||||
draft,
|
draft,
|
||||||
prerelease
|
prerelease,
|
||||||
|
target_commitish: commitish
|
||||||
});
|
});
|
||||||
|
|
||||||
// Get the ID, html_url, and upload URL for the created Release from the response
|
// Get the ID, html_url, and upload URL for the created Release from the response
|
||||||
|
|||||||
1232
dist/licenses.txt
vendored
Normal file
1232
dist/licenses.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6
package-lock.json
generated
6
package-lock.json
generated
@@ -4359,9 +4359,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lodash": {
|
"lodash": {
|
||||||
"version": "4.17.15",
|
"version": "4.17.19",
|
||||||
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
|
||||||
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
"integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"lodash.get": {
|
"lodash.get": {
|
||||||
|
|||||||
@@ -4,8 +4,9 @@
|
|||||||
"description": "Create a release",
|
"description": "Create a release",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint 'src/**.js' 'tests/**.js' --fix",
|
"lint": "eslint \"src/**.js\" \"tests/**.js\" --fix",
|
||||||
"test": "eslint 'src/**.js' 'tests/**.js' && jest --coverage",
|
"test": "eslint \"src/**.js\" \"tests/**.js\" && jest --coverage",
|
||||||
|
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
||||||
"build": "ncc build src/main.js",
|
"build": "ncc build src/main.js",
|
||||||
"precommit": "npm run build && git add dist/"
|
"precommit": "npm run build && git add dist/"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
const core = require('@actions/core');
|
const core = require('@actions/core');
|
||||||
const { GitHub, context } = require('@actions/github');
|
const { GitHub, context } = require('@actions/github');
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
try {
|
try {
|
||||||
@@ -7,17 +8,30 @@ async function run() {
|
|||||||
const github = new GitHub(process.env.GITHUB_TOKEN);
|
const github = new GitHub(process.env.GITHUB_TOKEN);
|
||||||
|
|
||||||
// Get owner and repo from context of payload that triggered the action
|
// Get owner and repo from context of payload that triggered the action
|
||||||
const { owner, repo } = context.repo;
|
const { owner: currentOwner, repo: currentRepo } = context.repo;
|
||||||
|
|
||||||
// Get the inputs from the workflow file: https://github.com/actions/toolkit/tree/master/packages/core#inputsoutputs
|
// Get the inputs from the workflow file: https://github.com/actions/toolkit/tree/master/packages/core#inputsoutputs
|
||||||
const tagName = core.getInput('tag_name', { required: true });
|
const tagName = core.getInput('tag_name', { required: true });
|
||||||
|
|
||||||
// This removes the 'refs/tags' portion of the string, i.e. from 'refs/tags/v1.10.15' to 'v1.10.15'
|
// This removes the 'refs/tags' portion of the string, i.e. from 'refs/tags/v1.10.15' to 'v1.10.15'
|
||||||
const tag = tagName.replace('refs/tags/', '');
|
const tag = tagName.replace('refs/tags/', '');
|
||||||
const releaseName = core.getInput('release_name', { required: true }).replace('refs/tags/', '');
|
const releaseName = core.getInput('release_name', { required: false }).replace('refs/tags/', '');
|
||||||
const body = core.getInput('body', { required: false });
|
const body = core.getInput('body', { required: false });
|
||||||
const draft = core.getInput('draft', { required: false }) === 'true';
|
const draft = core.getInput('draft', { required: false }) === 'true';
|
||||||
const prerelease = core.getInput('prerelease', { required: false }) === 'true';
|
const prerelease = core.getInput('prerelease', { required: false }) === 'true';
|
||||||
|
const commitish = core.getInput('commitish', { required: false }) || context.sha;
|
||||||
|
|
||||||
|
const bodyPath = core.getInput('body_path', { required: false });
|
||||||
|
const owner = core.getInput('owner', { required: false }) || currentOwner;
|
||||||
|
const repo = core.getInput('repo', { required: false }) || currentRepo;
|
||||||
|
let bodyFileContent = null;
|
||||||
|
if (bodyPath !== '' && !!bodyPath) {
|
||||||
|
try {
|
||||||
|
bodyFileContent = fs.readFileSync(bodyPath, { encoding: 'utf8' });
|
||||||
|
} catch (error) {
|
||||||
|
core.setFailed(error.message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Create a release
|
// Create a release
|
||||||
// API Documentation: https://developer.github.com/v3/repos/releases/#create-a-release
|
// API Documentation: https://developer.github.com/v3/repos/releases/#create-a-release
|
||||||
@@ -27,9 +41,10 @@ async function run() {
|
|||||||
repo,
|
repo,
|
||||||
tag_name: tag,
|
tag_name: tag,
|
||||||
name: releaseName,
|
name: releaseName,
|
||||||
body,
|
body: bodyFileContent || body,
|
||||||
draft,
|
draft,
|
||||||
prerelease
|
prerelease,
|
||||||
|
target_commitish: commitish
|
||||||
});
|
});
|
||||||
|
|
||||||
// Get the ID, html_url, and upload URL for the created Release from the response
|
// Get the ID, html_url, and upload URL for the created Release from the response
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
jest.mock('@actions/core');
|
jest.mock('@actions/core');
|
||||||
jest.mock('@actions/github');
|
jest.mock('@actions/github');
|
||||||
|
jest.mock('fs');
|
||||||
|
|
||||||
const core = require('@actions/core');
|
const core = require('@actions/core');
|
||||||
const { GitHub, context } = require('@actions/github');
|
const { GitHub, context } = require('@actions/github');
|
||||||
|
const fs = require('fs');
|
||||||
const run = require('../src/create-release.js');
|
const run = require('../src/create-release.js');
|
||||||
|
|
||||||
/* eslint-disable no-undef */
|
/* eslint-disable no-undef */
|
||||||
@@ -22,6 +24,7 @@ describe('Create Release', () => {
|
|||||||
owner: 'owner',
|
owner: 'owner',
|
||||||
repo: 'repo'
|
repo: 'repo'
|
||||||
};
|
};
|
||||||
|
context.sha = 'sha';
|
||||||
|
|
||||||
const github = {
|
const github = {
|
||||||
repos: {
|
repos: {
|
||||||
@@ -50,7 +53,8 @@ describe('Create Release', () => {
|
|||||||
name: 'myRelease',
|
name: 'myRelease',
|
||||||
body: 'myBody',
|
body: 'myBody',
|
||||||
draft: false,
|
draft: false,
|
||||||
prerelease: false
|
prerelease: false,
|
||||||
|
target_commitish: 'sha'
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -72,7 +76,8 @@ describe('Create Release', () => {
|
|||||||
name: 'myRelease',
|
name: 'myRelease',
|
||||||
body: 'myBody',
|
body: 'myBody',
|
||||||
draft: true,
|
draft: true,
|
||||||
prerelease: false
|
prerelease: false,
|
||||||
|
target_commitish: 'sha'
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -94,7 +99,8 @@ describe('Create Release', () => {
|
|||||||
name: 'myRelease',
|
name: 'myRelease',
|
||||||
body: 'myBody',
|
body: 'myBody',
|
||||||
draft: false,
|
draft: false,
|
||||||
prerelease: true
|
prerelease: true,
|
||||||
|
target_commitish: 'sha'
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -116,7 +122,35 @@ describe('Create Release', () => {
|
|||||||
name: 'myRelease',
|
name: 'myRelease',
|
||||||
body: '',
|
body: '',
|
||||||
draft: false,
|
draft: false,
|
||||||
prerelease: false
|
prerelease: false,
|
||||||
|
target_commitish: 'sha'
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Release body based on file', async () => {
|
||||||
|
core.getInput = jest
|
||||||
|
.fn()
|
||||||
|
.mockReturnValueOnce('refs/tags/v1.0.0')
|
||||||
|
.mockReturnValueOnce('myRelease')
|
||||||
|
.mockReturnValueOnce('') // <-- The default value for body in action.yml
|
||||||
|
.mockReturnValueOnce('false')
|
||||||
|
.mockReturnValueOnce('false')
|
||||||
|
.mockReturnValueOnce(null)
|
||||||
|
.mockReturnValueOnce('notes.md');
|
||||||
|
|
||||||
|
fs.readFileSync = jest.fn().mockReturnValueOnce('# this is a release\nThe markdown is strong in this one.');
|
||||||
|
|
||||||
|
await run();
|
||||||
|
|
||||||
|
expect(createRelease).toHaveBeenCalledWith({
|
||||||
|
owner: 'owner',
|
||||||
|
repo: 'repo',
|
||||||
|
tag_name: 'v1.0.0',
|
||||||
|
name: 'myRelease',
|
||||||
|
body: '# this is a release\nThe markdown is strong in this one.',
|
||||||
|
draft: false,
|
||||||
|
prerelease: false,
|
||||||
|
target_commitish: 'sha'
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user