├── .eslintrc ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── licensed.yml │ └── versioning.yml ├── .gitignore ├── .licensed.yml ├── .licenses └── npm │ ├── @actions │ ├── core.dep.yml │ ├── exec.dep.yml │ ├── github.dep.yml │ └── http-client.dep.yml │ ├── @octokit │ ├── auth-token.dep.yml │ ├── endpoint.dep.yml │ ├── graphql.dep.yml │ ├── plugin-paginate-rest.dep.yml │ ├── plugin-request-log.dep.yml │ ├── plugin-rest-endpoint-methods.dep.yml │ ├── request-error-1.2.1.dep.yml │ ├── request-error-2.0.0.dep.yml │ ├── request.dep.yml │ ├── rest.dep.yml │ └── types.dep.yml │ ├── @types │ └── node.dep.yml │ ├── atob-lite.dep.yml │ ├── before-after-hook.dep.yml │ ├── btoa-lite.dep.yml │ ├── cross-spawn.dep.yml │ ├── deprecation.dep.yml │ ├── end-of-stream.dep.yml │ ├── execa.dep.yml │ ├── get-stream.dep.yml │ ├── is-plain-object.dep.yml │ ├── is-stream.dep.yml │ ├── isexe.dep.yml │ ├── isobject.dep.yml │ ├── lodash.get.dep.yml │ ├── lodash.set.dep.yml │ ├── lodash.uniq.dep.yml │ ├── macos-release.dep.yml │ ├── nice-try.dep.yml │ ├── node-fetch.dep.yml │ ├── npm-run-path.dep.yml │ ├── octokit-pagination-methods.dep.yml │ ├── once.dep.yml │ ├── os-name.dep.yml │ ├── p-finally.dep.yml │ ├── path-key.dep.yml │ ├── pump.dep.yml │ ├── semver.dep.yml │ ├── shebang-command.dep.yml │ ├── shebang-regex.dep.yml │ ├── signal-exit.dep.yml │ ├── strip-eof.dep.yml │ ├── tunnel.dep.yml │ ├── universal-user-agent-4.0.1.dep.yml │ ├── universal-user-agent-5.0.0.dep.yml │ ├── which.dep.yml │ ├── windows-release.dep.yml │ └── wrappy.dep.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── package.json ├── src ├── create-release.js └── main.js └── tests └── create-release.test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .licenses/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.github/workflows/licensed.yml -------------------------------------------------------------------------------- /.github/workflows/versioning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.github/workflows/versioning.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.gitignore -------------------------------------------------------------------------------- /.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licensed.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/core.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@actions/core.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/exec.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@actions/exec.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/github.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@actions/github.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/http-client.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@actions/http-client.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/auth-token.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/auth-token.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/endpoint.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/endpoint.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/graphql.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/graphql.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-paginate-rest.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/plugin-paginate-rest.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-request-log.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/plugin-request-log.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-rest-endpoint-methods.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/plugin-rest-endpoint-methods.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request-error-1.2.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/request-error-1.2.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request-error-2.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/request-error-2.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/request.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/rest.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/rest.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/types.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@octokit/types.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@types/node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/@types/node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/atob-lite.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/atob-lite.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/before-after-hook.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/before-after-hook.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/btoa-lite.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/btoa-lite.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/cross-spawn.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/cross-spawn.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/deprecation.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/deprecation.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/end-of-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/end-of-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/execa.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/execa.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/get-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/get-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/is-plain-object.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/is-plain-object.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/is-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/is-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/isexe.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/isexe.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/isobject.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/isobject.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lodash.get.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/lodash.get.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lodash.set.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/lodash.set.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lodash.uniq.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/lodash.uniq.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/macos-release.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/macos-release.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/nice-try.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/nice-try.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/node-fetch.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/node-fetch.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/npm-run-path.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/npm-run-path.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/octokit-pagination-methods.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/octokit-pagination-methods.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/once.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/once.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/os-name.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/os-name.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/p-finally.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/p-finally.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/path-key.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/path-key.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/pump.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/pump.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/semver.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/semver.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/shebang-command.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/shebang-command.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/shebang-regex.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/shebang-regex.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/signal-exit.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/signal-exit.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/strip-eof.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/strip-eof.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tunnel.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/tunnel.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/universal-user-agent-4.0.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/universal-user-agent-4.0.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/universal-user-agent-5.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/universal-user-agent-5.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/which.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/which.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/windows-release.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/windows-release.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/wrappy.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/.licenses/npm/wrappy.dep.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/package.json -------------------------------------------------------------------------------- /src/create-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/src/create-release.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/src/main.js -------------------------------------------------------------------------------- /tests/create-release.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/create-release/HEAD/tests/create-release.test.js --------------------------------------------------------------------------------