From 4448a104309fd5f7ed3a7f8b8f5b9c86bf073a10 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Sat, 25 Oct 2025 13:54:45 -0400 Subject: [PATCH] chore(config): Remove scopes.json --- .github/scopes.json | 158 -------------------------------------------- Repo.toml | 18 +++++ 2 files changed, 18 insertions(+), 158 deletions(-) delete mode 100644 .github/scopes.json create mode 100644 Repo.toml diff --git a/.github/scopes.json b/.github/scopes.json deleted file mode 100644 index b33a5f2cb..000000000 --- a/.github/scopes.json +++ /dev/null @@ -1,158 +0,0 @@ -[ - { - "scope": "deps", - "path": "go.sum" - }, - { - "scope": "cli", - "path": "src" - }, - { - "scope": "cli", - "path": "package.json" - }, - { - "scope": "deps", - "path": "go.mod" - }, - { - "scope": "api", - "path": "api/dex" - }, - { - "scope": "api", - "path": "api/did" - }, - { - "scope": "api", - "path": "api/dwn" - }, - { - "scope": "api", - "path": "api/svc" - }, - { - "scope": "api", - "path": "api" - }, - { - "scope": "ante", - "path": "app/ante" - }, - { - "scope": "cli", - "path": "app/commands" - }, - { - "scope": "app", - "path": "app/context" - }, - { - "scope": "app", - "path": "app/decorators" - }, - { - "scope": "app", - "path": "app/params" - }, - { - "scope": "app", - "path": "app/upgrades" - }, - { - "scope": "app", - "path": "app" - }, - { - "scope": "chains", - "path": "chains" - }, - { - "scope": "cmd", - "path": "cmd/snrd" - }, - { - "scope": "cmd", - "path": "cmd" - }, - { - "scope": "docs", - "path": "docs" - }, - { - "scope": "config", - "path": "networks/localnet" - }, - { - "scope": "config", - "path": "networks/testnet" - }, - { - "scope": "config", - "path": "networks" - }, - { - "scope": "dex", - "path": "proto/dex" - }, - { - "scope": "did", - "path": "proto/did" - }, - { - "scope": "dwn", - "path": "proto/dwn" - }, - { - "scope": "svc", - "path": "proto/svc" - }, - { - "scope": "proto", - "path": "proto" - }, - { - "scope": "scripts", - "path": "scripts" - }, - { - "scope": "test", - "path": "test/e2e" - }, - { - "scope": "test", - "path": "test/integration" - }, - { - "scope": "test", - "path": "test/oauth" - }, - { - "scope": "test", - "path": "test" - }, - { - "scope": "dex", - "path": "x/dex" - }, - { - "scope": "did", - "path": "x/did" - }, - { - "scope": "dwn", - "path": "x/dwn" - }, - { - "scope": "svc", - "path": "x/svc" - }, - { - "scope": "ci", - "path": "Makefile" - }, - { - "scope": "ci", - "path": ".github" - } -] diff --git a/Repo.toml b/Repo.toml new file mode 100644 index 000000000..25ab1ab3d --- /dev/null +++ b/Repo.toml @@ -0,0 +1,18 @@ +[scopes] +deps = ["go.sum", "go.mod"] +cli = ["src", "package.json", "app/commands"] +api = ["api/dex", "api/did", "api/dwn", "api/svc", "api"] +ante = ["app/ante"] +app = ["app/context", "app/decorators", "app/params", "app/upgrades", "app"] +chains = ["chains"] +cmd = ["cmd/snrd", "cmd"] +docs = ["docs"] +config = ["networks/localnet", "networks/testnet", "networks"] +dex = ["proto/dex", "x/dex"] +did = ["proto/did", "x/did"] +dwn = ["proto/dwn", "x/dwn"] +svc = ["proto/svc", "x/svc"] +proto = ["proto"] +scripts = ["scripts"] +test = ["test/e2e", "test/integration", "test/oauth", "test"] +ci = ["Makefile", ".github"]