├── .github ├── CODEOWNERS ├── release-drafter.yml └── workflows │ ├── draft-release.yml │ ├── linter.yml │ ├── matrix.yml │ ├── release.yml │ └── scan.yml ├── .gitignore ├── CODE_OF_CONDUCT ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── gh-repo-stats ├── repos.txt ├── screenshots ├── output1.png ├── output2.png └── step1.png └── script └── build.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/.github/workflows/matrix.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/.github/workflows/scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore any csv files that may get uploaded 2 | *.csv 3 | .DS_STORE -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/SECURITY.md -------------------------------------------------------------------------------- /gh-repo-stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/gh-repo-stats -------------------------------------------------------------------------------- /repos.txt: -------------------------------------------------------------------------------- 1 | monitoring 2 | pipelines 3 | -------------------------------------------------------------------------------- /screenshots/output1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/screenshots/output1.png -------------------------------------------------------------------------------- /screenshots/output2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/screenshots/output2.png -------------------------------------------------------------------------------- /screenshots/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/screenshots/step1.png -------------------------------------------------------------------------------- /script/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mona-actions/gh-repo-stats/HEAD/script/build.sh --------------------------------------------------------------------------------