home / dmd

owners

41 rows

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: organisation, owner, updated_at, updated_at (date)

Link rowid ▼ platform organisation repo owner notes updated_at
28 28 github jamietanna actions Jamie Tanna   2025-06-19T12:17:27Z
29 29 github jamietanna actions-testing Jamie Tanna   2025-06-19T12:17:27Z
30 30 github jamietanna bulk-changes-repo Jamie Tanna   2025-06-19T12:17:27Z
31 31 github jamietanna example-github-actions-sync-files Jamie Tanna   2025-06-19T12:17:27Z
32 32 github jamietanna example-spec-go Jamie Tanna   2025-06-19T12:17:27Z
33 33 github jamietanna github-v4-issue Jamie Tanna   2025-06-19T12:17:27Z
34 34 github jamietanna goreleaser-bug-build-not-found Jamie Tanna   2025-06-19T12:17:27Z
35 35 github jamietanna jamietanna Jamie Tanna   2025-06-19T12:17:27Z
36 36 github jamietanna oapi-codegen-private Jamie Tanna   2025-06-19T12:17:27Z
37 37 github jamietanna pages-testing Jamie Tanna   2025-06-19T12:17:27Z
38 38 github jamietanna renovate-501-maven Jamie Tanna   2025-06-19T12:17:27Z
39 39 github jamietanna renovate-config-19166-repo Jamie Tanna   2025-06-19T12:17:27Z
40 40 github jamietanna renovate-golangci-lint-github-action Jamie Tanna   2025-06-19T12:17:27Z
41 41 github jamietanna renovate-iss-19195 Jamie Tanna   2025-06-19T12:17:27Z
42 42 github jamietanna renovate-iss-20106 Jamie Tanna   2025-06-19T12:17:27Z
43 43 github jamietanna renovate-iss-20584 Jamie Tanna   2025-06-19T12:17:27Z
44 44 github jamietanna renovate-iss-oapi Jamie Tanna   2025-06-19T12:17:27Z
45 45 github jamietanna renovate-issue-github-tag Jamie Tanna   2025-06-19T12:17:27Z
46 46 github jamietanna renovate-repro-gomod-pinning-digest Jamie Tanna   2025-06-19T12:17:27Z
47 47 github jamietanna renovate-repro-helm-registry Jamie Tanna   2025-06-19T12:17:27Z
48 48 github jamietanna renovate-repro-local-no-requireconfig Jamie Tanna   2025-06-19T12:17:27Z
49 49 github jamietanna renovate-repro-local-onboarding Jamie Tanna   2025-06-19T12:17:27Z
50 50 github jamietanna renovate-repro-maven-gradle-deptypes Jamie Tanna   2025-06-19T12:17:27Z
51 51 github jamietanna renovate-repro-pep-pandas Jamie Tanna   2025-06-19T12:17:27Z
52 52 github jamietanna renovate-reproduce-22077 Jamie Tanna   2025-06-19T12:17:27Z
53 53 github jamietanna tmp-renovate-testing Jamie Tanna   2025-06-19T12:17:27Z
54 54 github jamietanna versioninfo-test Jamie Tanna   2025-06-19T12:17:27Z
55 55 github alphagov pay-connector GDS Pay   2025-06-19T12:17:28Z
56 56 github alphagov pay-publicapi GDS Pay   2025-06-19T12:17:28Z
57 57 github alphagov pay-selfservice GDS Pay   2025-06-19T12:17:28Z
58 58 github alphagov pay-webhooks GDS Pay   2025-06-19T12:17:28Z
59 59 github co-cddo api-catalogue CDDO   2025-06-19T12:17:28Z
60 60 github co-cddo api-standards-linting CDDO   2025-06-19T12:17:28Z
61 61 github co-cddo federated-api-model CDDO   2025-06-19T12:17:28Z
62 62 github elastic beats Elastic   2025-06-19T12:17:28Z
63 63 github elastic cloudbeat Elastic   2025-06-19T12:17:28Z
64 64 github elastic elasticsearch Elastic   2025-06-19T12:17:28Z
65 65 github elastic eui Elastic   2025-06-19T12:17:28Z
66 66 github elastic go-elasticsearch Elastic   2025-06-19T12:17:28Z
67 67 github elastic kibana Elastic   2025-06-19T12:17:28Z
68 68 github elastic logstash Elastic   2025-06-19T12:17:28Z

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE owners (
  -- what platform hosts the source code that this repo is for? i.e. `github`,
  -- `gitlab`, `gitea`, etc
  --
  -- See also: https://dmd.tanna.dev/concepts/repo-key/#platform
  --
  -- Foreign keys:
  -- - `renovate.platform`
  platform TEXT NOT NULL,
  -- what organisation manages the source code for this repo? Can include `/`
  -- for nested organisations
  --
  -- See also: https://dmd.tanna.dev/concepts/repo-key/#organisation
  --
  -- Foreign keys:
  -- - `renovate.organisation`
  organisation TEXT NOT NULL,
  -- what is the repo name?
  --
  -- See also: https://dmd.tanna.dev/concepts/repo-key/#repo
  --
  -- Foreign keys:
  -- - `renovate.repo`
  repo TEXT NOT NULL,

  -- owner is a free-form identifier for who owns the repository. This could be
  -- an email address, a team name, Slack channel name, etc, but should ideally
  -- be clear from this column who should be contacted about any queries about
  -- the repository
  owner TEXT NOT NULL,
  -- notes allows adding additional, optional, context around the ownership,
  -- for instance a link to a Slack channel, Confluence page, internal Service
  -- Catalog, etc. The contents will be shown verbatim to a user, and will not
  -- be interpreted as markup.
  notes TEXT,

  -- updated_at indicates when this ownership information was last updated in
  -- dependency-management-data, not when the ownership last changed between
  -- teams
  updated_at TEXT NOT NULL,

  UNIQUE (platform, organisation, repo) ON CONFLICT REPLACE
);
Powered by Datasette · Queries took 10.317ms