gitextract_10_7h8bn/ ├── .bra.toml ├── .changeset/ │ ├── README.md │ ├── changelog.js │ └── config.json ├── .config/ │ ├── .cprc.json │ ├── .prettierrc.js │ ├── Dockerfile │ ├── README.md │ ├── bundler/ │ │ └── externals.ts │ ├── docker-compose-base.yaml │ ├── entrypoint.sh │ ├── eslint.config.mjs │ ├── jest/ │ │ ├── mocks/ │ │ │ └── react-inlinesvg.tsx │ │ └── utils.js │ ├── jest-setup.js │ ├── jest.config.js │ ├── supervisord/ │ │ └── supervisord.conf │ ├── tsconfig.json │ ├── types/ │ │ ├── bundler-rules.d.ts │ │ ├── custom.d.ts │ │ ├── setupTests.d.ts │ │ └── webpack-plugins.d.ts │ └── webpack/ │ ├── BuildModeWebpackPlugin.ts │ ├── constants.ts │ ├── utils.ts │ └── webpack.config.ts ├── .cprc.json ├── .editorconfig ├── .github/ │ ├── CODEOWNERS │ └── workflows/ │ ├── add-to-project.yml │ ├── publish.yaml │ ├── push.yaml │ └── update-create-plugin.yml ├── .gitignore ├── .nvmrc ├── .prettierrc.js ├── .vscode/ │ └── launch.json ├── .yarn/ │ └── releases/ │ └── yarn-4.13.0.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Magefile.go ├── README.md ├── cspell.config.json ├── docker-compose.yaml ├── docs/ │ ├── Makefile │ ├── developer-guide.md │ ├── docs.mk │ ├── make-docs │ ├── sources/ │ │ ├── _index.md │ │ ├── annotations/ │ │ │ └── _index.md │ │ ├── query/ │ │ │ └── _index.md │ │ ├── sample-dashboards/ │ │ │ └── _index.md │ │ ├── setup/ │ │ │ ├── _index.md │ │ │ ├── datasource.md │ │ │ ├── installation.md │ │ │ ├── provisioning.md │ │ │ └── token.md │ │ ├── troubleshoot/ │ │ │ └── _index.md │ │ └── variables-and-macros/ │ │ ├── _index.md │ │ ├── macros.md │ │ └── variables.md │ └── variables.mk ├── eslint.config.mjs ├── go.mod ├── go.sum ├── jest-setup.js ├── jest.config.js ├── package.json ├── pkg/ │ ├── dfutil/ │ │ └── framer.go │ ├── errors/ │ │ ├── docs.go │ │ └── errors.go │ ├── github/ │ │ ├── client/ │ │ │ ├── client.go │ │ │ ├── errorsourcehandling.go │ │ │ └── errorsourcehandling_test.go │ │ ├── codescanning.go │ │ ├── codescanning_handler.go │ │ ├── codescanning_test.go │ │ ├── commit_files.go │ │ ├── commit_files_handler.go │ │ ├── commit_files_test.go │ │ ├── commits.go │ │ ├── commits_handler.go │ │ ├── commits_test.go │ │ ├── constants.go │ │ ├── contributors.go │ │ ├── contributors_handler.go │ │ ├── contributors_test.go │ │ ├── datasource.go │ │ ├── deployments.go │ │ ├── deployments_handler.go │ │ ├── deployments_test.go │ │ ├── docs.go │ │ ├── issues.go │ │ ├── issues_handler.go │ │ ├── issues_test.go │ │ ├── labels.go │ │ ├── labels_handler.go │ │ ├── labels_test.go │ │ ├── macros.go │ │ ├── macros_test.go │ │ ├── milestones.go │ │ ├── milestones_handler.go │ │ ├── milestones_test.go │ │ ├── organizations.go │ │ ├── organizations_handler.go │ │ ├── organizations_test.go │ │ ├── packages.go │ │ ├── packages_handler.go │ │ ├── packages_test.go │ │ ├── projects/ │ │ │ ├── project_items.go │ │ │ ├── project_items_filter.go │ │ │ ├── project_items_filter_test.go │ │ │ ├── project_items_models.go │ │ │ ├── project_items_test.go │ │ │ ├── projects.go │ │ │ ├── projects_test.go │ │ │ └── testdata/ │ │ │ ├── project.golden.jsonc │ │ │ └── projects.golden.jsonc │ │ ├── projects_handler.go │ │ ├── pull_request_reviews.go │ │ ├── pull_request_reviews_handler.go │ │ ├── pull_request_reviews_test.go │ │ ├── pull_requests.go │ │ ├── pull_requests_handler.go │ │ ├── pull_requests_test.go │ │ ├── query_handler.go │ │ ├── releases.go │ │ ├── releases_handler.go │ │ ├── releases_test.go │ │ ├── repositories.go │ │ ├── repositories_handler.go │ │ ├── repositories_test.go │ │ ├── resource_handlers.go │ │ ├── schema.go │ │ ├── sql.go │ │ ├── sql_handler_test.go │ │ ├── stargazers.go │ │ ├── stargazers_handler.go │ │ ├── stargazers_test.go │ │ ├── tags.go │ │ ├── tags_handler.go │ │ ├── tags_test.go │ │ ├── testdata/ │ │ │ ├── commit_files.golden.jsonc │ │ │ ├── commits.golden.jsonc │ │ │ ├── commits_with_files.golden.jsonc │ │ │ ├── contributors.golden.jsonc │ │ │ ├── issues.golden.jsonc │ │ │ ├── milestones.golden.jsonc │ │ │ ├── pull_request_reviews.golden.jsonc │ │ │ ├── pull_requests.golden.jsonc │ │ │ ├── releases.golden.jsonc │ │ │ ├── repositories.golden.jsonc │ │ │ ├── stargazers.golden.jsonc │ │ │ ├── tags.golden.jsonc │ │ │ ├── workflowRuns.golden.jsonc │ │ │ ├── workflowUsage.golden.jsonc │ │ │ └── workflows.golden.jsonc │ │ ├── vulnerabilites_handler.go │ │ ├── vulnerabilities.go │ │ ├── workflows.go │ │ ├── workflows_handler.go │ │ └── workflows_test.go │ ├── httputil/ │ │ └── errors.go │ ├── main.go │ ├── models/ │ │ ├── client.go │ │ ├── codescanning.go │ │ ├── commit_files.go │ │ ├── commits.go │ │ ├── contributors.go │ │ ├── deployments.go │ │ ├── docs.go │ │ ├── issues.go │ │ ├── labels.go │ │ ├── milestones.go │ │ ├── packages.go │ │ ├── packages_test.go │ │ ├── pagination.go │ │ ├── projects.go │ │ ├── pull_requests.go │ │ ├── query.go │ │ ├── releases.go │ │ ├── repositories.go │ │ ├── settings.go │ │ ├── settings_test.go │ │ ├── stargazers.go │ │ ├── tags.go │ │ ├── vulnerabilities.go │ │ └── workflows.go │ ├── plugin/ │ │ ├── datasource.go │ │ ├── datasource_caching.go │ │ ├── datasource_caching_test.go │ │ └── instance.go │ └── testutil/ │ ├── client.go │ ├── frames.go │ ├── maputils.go │ └── typeutils.go ├── playwright.config.ts ├── renovate.json ├── scripts/ │ ├── debug-backend.sh │ ├── e2e.sh │ ├── restart-plugin.sh │ └── test.sh ├── src/ │ ├── DataSource.test.ts │ ├── DataSource.ts │ ├── components/ │ │ ├── FieldSelect.tsx │ │ ├── Filters.tsx │ │ └── selectors.ts │ ├── constants.ts │ ├── dashboards/ │ │ └── dashboard.json │ ├── migrations.ts │ ├── module.ts │ ├── plugin.json │ ├── tracking.ts │ ├── types/ │ │ ├── config.ts │ │ └── query.ts │ ├── validation.ts │ ├── variables.test.ts │ ├── variables.ts │ └── views/ │ ├── ConfigEditor.spec.tsx │ ├── ConfigEditor.tsx │ ├── QueryEditor.tsx │ ├── QueryEditorCodeScanning.tsx │ ├── QueryEditorCommitFiles.tsx │ ├── QueryEditorCommits.tsx │ ├── QueryEditorContributors.tsx │ ├── QueryEditorDeployments.tsx │ ├── QueryEditorIssues.test.tsx │ ├── QueryEditorIssues.tsx │ ├── QueryEditorLabels.tsx │ ├── QueryEditorMilestones.tsx │ ├── QueryEditorPackages.test.tsx │ ├── QueryEditorPackages.tsx │ ├── QueryEditorProjects.tsx │ ├── QueryEditorPullRequestFiles.tsx │ ├── QueryEditorPullRequestReviews.tsx │ ├── QueryEditorPullRequests.tsx │ ├── QueryEditorRepository.test.tsx │ ├── QueryEditorRepository.tsx │ ├── QueryEditorWorkflowRuns.tsx │ ├── QueryEditorWorkflowUsage.tsx │ ├── QueryEditorWorkflows.tsx │ └── VariableQueryEditor.tsx ├── tests/ │ ├── ConfigEditor.spec.ts │ ├── QueryEditor.spec.ts │ └── mocks/ │ └── github-response.ts └── tsconfig.json