├── .gitignore ├── README.md ├── api.github.com.pbids ├── docs ├── organizations.md └── repositories.md ├── github.pbit ├── github_dev_metrics_copilot_only.pbit ├── images ├── copilot_only_stats.png ├── screenshot_commits_PRs.png ├── screenshot_copilot_commits.png ├── screenshot_copilot_others.png └── screenshot_workflowruns.png └── src ├── .gitignore ├── github_copilot_dev_metrics.Report ├── .platform ├── StaticResources │ ├── RegisteredResources │ │ └── GitHub_Developer_Metrics3756433280675662.json │ └── SharedResources │ │ └── BaseThemes │ │ └── CY24SU08.json ├── definition.pbir └── report.json ├── github_copilot_dev_metrics.SemanticModel ├── .pbi │ └── editorSettings.json ├── .platform ├── definition.pbism ├── diagramLayout.json └── model.bim └── github_copilot_dev_metrics.pbip /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | cache.abf 3 | localSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/README.md -------------------------------------------------------------------------------- /api.github.com.pbids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/api.github.com.pbids -------------------------------------------------------------------------------- /docs/organizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/docs/organizations.md -------------------------------------------------------------------------------- /docs/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/docs/repositories.md -------------------------------------------------------------------------------- /github.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/github.pbit -------------------------------------------------------------------------------- /github_dev_metrics_copilot_only.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/github_dev_metrics_copilot_only.pbit -------------------------------------------------------------------------------- /images/copilot_only_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/images/copilot_only_stats.png -------------------------------------------------------------------------------- /images/screenshot_commits_PRs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/images/screenshot_commits_PRs.png -------------------------------------------------------------------------------- /images/screenshot_copilot_commits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/images/screenshot_copilot_commits.png -------------------------------------------------------------------------------- /images/screenshot_copilot_others.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/images/screenshot_copilot_others.png -------------------------------------------------------------------------------- /images/screenshot_workflowruns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/images/screenshot_workflowruns.png -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.Report/.platform -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.Report/StaticResources/RegisteredResources/GitHub_Developer_Metrics3756433280675662.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.Report/StaticResources/RegisteredResources/GitHub_Developer_Metrics3756433280675662.json -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.Report/StaticResources/SharedResources/BaseThemes/CY24SU08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.Report/StaticResources/SharedResources/BaseThemes/CY24SU08.json -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.Report/definition.pbir -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.Report/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.Report/report.json -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.SemanticModel/.pbi/editorSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.SemanticModel/.pbi/editorSettings.json -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.SemanticModel/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.SemanticModel/.platform -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.SemanticModel/definition.pbism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.SemanticModel/definition.pbism -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.SemanticModel/diagramLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.SemanticModel/diagramLayout.json -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.SemanticModel/model.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.SemanticModel/model.bim -------------------------------------------------------------------------------- /src/github_copilot_dev_metrics.pbip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayodejiayodele/github-developer-metrics/HEAD/src/github_copilot_dev_metrics.pbip --------------------------------------------------------------------------------