├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── schedule.yml ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ └── main.test.ts ├── action.yml ├── dist └── index.js ├── jest.config.js ├── package.json ├── src ├── default-index-html.ts ├── git.ts ├── main.ts └── write.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/.github/workflows/schedule.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/__tests__/main.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/dist/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/package.json -------------------------------------------------------------------------------- /src/default-index-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/src/default-index-html.ts -------------------------------------------------------------------------------- /src/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/src/git.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/write.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/src/write.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/heads-up/HEAD/tsconfig.json --------------------------------------------------------------------------------