├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── dependabot.yml ├── slash-command-dispatch.json └── workflows │ ├── automerge-dependabot.yml │ ├── ci.yml │ ├── hello-world-command.yml │ ├── hello-yaml-command.yaml │ ├── ping-command.yml │ ├── slash-command-dispatch.yml │ └── update-major-version.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── __test__ ├── command-helper.unit.test.ts └── github-helper.int.test.ts ├── action.yml ├── dist └── index.js ├── docs ├── advanced-configuration.md ├── assets │ ├── comment-parsing.png │ ├── error-message-output.png │ ├── example-command.png │ └── slash-command-dispatch.png ├── examples.md ├── getting-started.md ├── updating.md └── workflow-dispatch.md ├── jest.config.js ├── package.json ├── src ├── command-helper.ts ├── github-helper.ts ├── main.ts ├── octokit-client.ts └── utils.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: peter-evans -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/slash-command-dispatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.github/slash-command-dispatch.json -------------------------------------------------------------------------------- /.github/workflows/automerge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.github/workflows/automerge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/hello-world-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.github/workflows/hello-world-command.yml -------------------------------------------------------------------------------- /.github/workflows/hello-yaml-command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.github/workflows/hello-yaml-command.yaml -------------------------------------------------------------------------------- /.github/workflows/ping-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.github/workflows/ping-command.yml -------------------------------------------------------------------------------- /.github/workflows/slash-command-dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.github/workflows/slash-command-dispatch.yml -------------------------------------------------------------------------------- /.github/workflows/update-major-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.github/workflows/update-major-version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/README.md -------------------------------------------------------------------------------- /__test__/command-helper.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/__test__/command-helper.unit.test.ts -------------------------------------------------------------------------------- /__test__/github-helper.int.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/__test__/github-helper.int.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/dist/index.js -------------------------------------------------------------------------------- /docs/advanced-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/docs/advanced-configuration.md -------------------------------------------------------------------------------- /docs/assets/comment-parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/docs/assets/comment-parsing.png -------------------------------------------------------------------------------- /docs/assets/error-message-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/docs/assets/error-message-output.png -------------------------------------------------------------------------------- /docs/assets/example-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/docs/assets/example-command.png -------------------------------------------------------------------------------- /docs/assets/slash-command-dispatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/docs/assets/slash-command-dispatch.png -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/updating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/docs/updating.md -------------------------------------------------------------------------------- /docs/workflow-dispatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/docs/workflow-dispatch.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/package.json -------------------------------------------------------------------------------- /src/command-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/src/command-helper.ts -------------------------------------------------------------------------------- /src/github-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/src/github-helper.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/octokit-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/src/octokit-client.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/slash-command-dispatch/HEAD/tsconfig.json --------------------------------------------------------------------------------