Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repo split experiments #2637

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 0 additions & 2 deletions .changelog/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ entry_indent = 2
# the parent of the `.changelog` folder).
[components.all]
chain-registry = { name = "Chain Registry", path = "chain-registry" }
ibc = { name = "IBC Modules", path = "modules" }
ibc-proto = { name = "IBC Proto", path = "proto" }
ibc-relayer = { name = "Relayer Library", path = "relayer" }
ibc-relayer-cli = { name = "Relayer CLI", path = "relayer-cli" }
ibc-telemetry = { name = "Telemetry & Metrics", path = "telemetry" }
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ______

### PR author checklist:
- [ ] Added changelog entry, using [`unclog`](https://github.com/informalsystems/unclog).
- [ ] Added tests: integration (for Hermes) or unit/mock tests (for modules).
- [ ] Added (integration or unit) tests.
- [ ] Linked to GitHub issue.
- [ ] Updated code comments and documentation (e.g., `docs/`).
- [ ] Tagged *one* reviewer who will be the one responsible for shepherding this PR.
Expand Down
25 changes: 0 additions & 25 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,6 @@ updates:
schedule:
interval: "weekly"

- package-ecosystem: "cargo"
directory: "modules"
schedule:
interval: "weekly"

- package-ecosystem: "cargo"
directory: "proto"
schedule:
interval: "weekly"

## Disable dependabot for `proto-compiler`.
## Rationale: we maintain the dependencies for proto-compiler
## manually, so that we update the proto-compiler binary
## (and the Cargo.lock file) only when we regenerate
## Rust types from the .proto files.
# - package-ecosystem: "cargo"
# directory: "proto-compiler"
# schedule:
# interval: "weekly"

- package-ecosystem: "cargo"
directory: "relayer"
schedule:
Expand All @@ -40,8 +20,3 @@ updates:
directory: "relayer-cli"
schedule:
interval: "weekly"

- package-ecosystem: "cargo"
directory: "ci/no-std-check"
schedule:
interval: "weekly"
4 changes: 0 additions & 4 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ on:
- flake.lock
- ci/**
- e2e/**
- proto/**
- modules/**
- relayer/**
- relayer-cli/**
- relayer-rest/**
Expand All @@ -26,8 +24,6 @@ on:
- flake.lock
- ci/**
- e2e/**
- proto/**
- modules/**
- relayer/**
- relayer-cli/**
- relayer-rest/**
Expand Down
47 changes: 0 additions & 47 deletions .github/workflows/no-std.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ on:
- Cargo.lock
- ci/**
- e2e/**
- proto/**
- modules/**
- relayer/**
- relayer-cli/**
- relayer-rest/**
Expand All @@ -22,8 +20,6 @@ on:
- Cargo.lock
- ci/**
- e2e/**
- proto/**
- modules/**
- relayer/**
- relayer-cli/**
- relayer-rest/**
Expand Down
Loading