├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── release-next.yml │ └── release.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yml ├── jest.config.js ├── package.json ├── src ├── main.ts ├── ticket-check-action.test.ts └── ticket-check-action.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/.github/workflows/release-next.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | 4 | *.log 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/action.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { run } from './ticket-check-action'; 2 | 3 | run(); 4 | -------------------------------------------------------------------------------- /src/ticket-check-action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/src/ticket-check-action.test.ts -------------------------------------------------------------------------------- /src/ticket-check-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/src/ticket-check-action.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofinancial/ticket-check-action/HEAD/tsconfig.json --------------------------------------------------------------------------------