├── .github ├── CODEOWNERS ├── code_of_conduct.md ├── contributing.md ├── dependabot.yml └── security.md ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist ├── index.js └── licenses.txt ├── index.js ├── package.json └── src └── graphql.js /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # default owners 2 | * @nicklegan 3 | -------------------------------------------------------------------------------- /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/.github/security.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/package.json -------------------------------------------------------------------------------- /src/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklegan/github-org-repo-metrics-action/HEAD/src/graphql.js --------------------------------------------------------------------------------