Skip to content

Commit

Permalink
feat: channel upgradability (#1613)
Browse files Browse the repository at this point in the history
Co-authored-by: Damian Nolan <[email protected]>
Co-authored-by: colin axnér <[email protected]>
Co-authored-by: Aditya Sripal <[email protected]>
Co-authored-by: Charly <[email protected]>
Co-authored-by: Cian Hatton <[email protected]>
Co-authored-by: sangier <[email protected]>
Co-authored-by: Jim Fasarakis-Hilliard <[email protected]>
Co-authored-by: Carlos Rodriguez <[email protected]>
Co-authored-by: Susannah Evans <[email protected]>
Co-authored-by: srdtrk <[email protected]>
Co-authored-by: Du Nguyen <[email protected]>
Co-authored-by: Đỗ Việt Hoàng <[email protected]>
  • Loading branch information
12 people authored Dec 21, 2023
1 parent 6653205 commit 28f757a
Show file tree
Hide file tree
Showing 114 changed files with 25,797 additions and 3,464 deletions.
4 changes: 2 additions & 2 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ pull_request_rules:
name: default
method: squash
commit_message_template: |
{{ title }} (#{{ number }})
{{ body }}
{{ title }} (#{{ number }})
{{ body }}
- name: backport patches to v1.0.x capability branch
conditions:
- base=main
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/golangci-feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# golangci-feature runs on pull requests from branches that do not target main.
#
# Working on feature branches (PRs where the PR base-ref != main) is a common
# workflow used, in order to make the merging of PRs easier certain lints are excluded
# when it makes sense. Currently, unused lints are excluded since many PRs will add
# unused code that will be used in a later PR.
name: golangci-lint feature branch
on:
pull_request:
# Ignore if the target is main. (Negation of golanci-lint.yml)
branches-ignore:
- main
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read

jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v1.54.2
args: --timeout 10m
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This IBC implementation in Golang is built as a Cosmos SDK module. To understand

## Roadmap

For an overview of upcoming changes to ibc-go take a look at the [roadmap](./docs/docs/01-ibc/09-roadmap.md).
For an overview of upcoming changes to ibc-go take a look at the [roadmap](./docs/docs/01-ibc/10-roadmap.md).

This roadmap is also available as a [project board](https://github.com/orgs/cosmos/projects/7/views/25).

Expand Down
Loading

0 comments on commit 28f757a

Please sign in to comment.