├── .github ├── dependabot.yml └── workflows │ ├── build-test.yaml │ ├── dependency-review.yml │ ├── usage-notify.yml │ └── usage.yaml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── __tests__ └── main.test.ts ├── action.yml ├── dist └── index.js ├── eslint.config.mjs ├── jest.config.ts ├── package.json ├── src ├── deploy.ts └── index.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/.github/workflows/build-test.yaml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/usage-notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/.github/workflows/usage-notify.yml -------------------------------------------------------------------------------- /.github/workflows/usage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/.github/workflows/usage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "sarif-viewer.connectToGithubCodeScanning": "off" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/__tests__/main.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/dist/index.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/package.json -------------------------------------------------------------------------------- /src/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/src/deploy.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austenstone/copilot-license-cleanup/HEAD/tsconfig.json --------------------------------------------------------------------------------