├── .eslintrc.js ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── img ├── actions-setting.png ├── fetch-and-merge-button.png ├── fetch-upstream-drop-down.png └── telegram.jpg ├── package.json ├── pnpm-lock.yaml ├── src ├── form.ts ├── index.ts ├── push.ts └── utils.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/README.md -------------------------------------------------------------------------------- /img/actions-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/img/actions-setting.png -------------------------------------------------------------------------------- /img/fetch-and-merge-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/img/fetch-and-merge-button.png -------------------------------------------------------------------------------- /img/fetch-upstream-drop-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/img/fetch-upstream-drop-down.png -------------------------------------------------------------------------------- /img/telegram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/img/telegram.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/src/form.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/src/push.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtsuki/bupt-ncov-report-action/HEAD/tsconfig.json --------------------------------------------------------------------------------