├── .env.example ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── README.zh-Hans.md ├── __tests__ ├── fetchRepos.test.ts └── renderToMd.test.ts ├── action.yml ├── dist ├── index.js ├── index.js.map ├── licenses.txt └── sourcemap-register.js ├── jest.config.js ├── package.json ├── src ├── fetchRepos.ts ├── main.ts ├── renderToMd.ts └── types.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-Hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/README.zh-Hans.md -------------------------------------------------------------------------------- /__tests__/fetchRepos.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/__tests__/fetchRepos.test.ts -------------------------------------------------------------------------------- /__tests__/renderToMd.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/__tests__/renderToMd.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/package.json -------------------------------------------------------------------------------- /src/fetchRepos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/src/fetchRepos.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/renderToMd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/src/renderToMd.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luooooob/create-my-awesome/HEAD/tsconfig.json --------------------------------------------------------------------------------