├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── code_of_conduct.md ├── codeowners ├── contributing.md ├── dependabot.yml ├── release.yml └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── cmd ├── actions.go ├── actions_test.go ├── billing.go ├── billing_test.go ├── cmd.go ├── cmd_test.go ├── license.go ├── license_test.go ├── repo.go ├── repo_test.go ├── verified_emails.go └── verified_emails_test.go ├── docs ├── report.md ├── report_actions.md ├── report_billing.md ├── report_license.md ├── report_repo.md └── report_verified-emails.md ├── go.mod ├── go.sum ├── internal ├── cmd │ └── docs │ │ └── main.go └── utils │ ├── common.go │ ├── common_test.go │ ├── csv.go │ ├── csv_test.go │ ├── json.go │ ├── json_test.go │ ├── md.go │ └── md_test.go ├── license ├── main.go ├── main_test.go └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/codeowners: -------------------------------------------------------------------------------- 1 | # default owners 2 | * @stoe 3 | -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /cmd/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/actions.go -------------------------------------------------------------------------------- /cmd/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/actions_test.go -------------------------------------------------------------------------------- /cmd/billing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/billing.go -------------------------------------------------------------------------------- /cmd/billing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/billing_test.go -------------------------------------------------------------------------------- /cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/cmd.go -------------------------------------------------------------------------------- /cmd/cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/cmd_test.go -------------------------------------------------------------------------------- /cmd/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/license.go -------------------------------------------------------------------------------- /cmd/license_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/license_test.go -------------------------------------------------------------------------------- /cmd/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/repo.go -------------------------------------------------------------------------------- /cmd/repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/repo_test.go -------------------------------------------------------------------------------- /cmd/verified_emails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/verified_emails.go -------------------------------------------------------------------------------- /cmd/verified_emails_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/cmd/verified_emails_test.go -------------------------------------------------------------------------------- /docs/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/docs/report.md -------------------------------------------------------------------------------- /docs/report_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/docs/report_actions.md -------------------------------------------------------------------------------- /docs/report_billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/docs/report_billing.md -------------------------------------------------------------------------------- /docs/report_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/docs/report_license.md -------------------------------------------------------------------------------- /docs/report_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/docs/report_repo.md -------------------------------------------------------------------------------- /docs/report_verified-emails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/docs/report_verified-emails.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/go.sum -------------------------------------------------------------------------------- /internal/cmd/docs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/internal/cmd/docs/main.go -------------------------------------------------------------------------------- /internal/utils/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/internal/utils/common.go -------------------------------------------------------------------------------- /internal/utils/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/internal/utils/common_test.go -------------------------------------------------------------------------------- /internal/utils/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/internal/utils/csv.go -------------------------------------------------------------------------------- /internal/utils/csv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/internal/utils/csv_test.go -------------------------------------------------------------------------------- /internal/utils/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/internal/utils/json.go -------------------------------------------------------------------------------- /internal/utils/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/internal/utils/json_test.go -------------------------------------------------------------------------------- /internal/utils/md.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/internal/utils/md.go -------------------------------------------------------------------------------- /internal/utils/md_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/internal/utils/md_test.go -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/license -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/main_test.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoe/gh-report/HEAD/readme.md --------------------------------------------------------------------------------