├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── action-test.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── doc ├── comment.png ├── merged.png └── new.png ├── eslint.config.mjs ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── src ├── main.ts └── notify.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | dummies 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/action-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/.github/workflows/action-test.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/dist/index.js -------------------------------------------------------------------------------- /doc/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/doc/comment.png -------------------------------------------------------------------------------- /doc/merged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/doc/merged.png -------------------------------------------------------------------------------- /doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/doc/new.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/src/notify.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonMarvel/google-chat-notification/HEAD/tsconfig.json --------------------------------------------------------------------------------