Skip to content

Commit

Permalink
Merge branch 'osmo/v0.47.5' into mattverse/bpt-5
Browse files Browse the repository at this point in the history
  • Loading branch information
czarcas7ic authored Feb 8, 2024
2 parents 856c280 + 9514fb8 commit 0a4cbba
Show file tree
Hide file tree
Showing 11 changed files with 395 additions and 105 deletions.
40 changes: 40 additions & 0 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
defaults:
actions:
backport:
assignees:
- "{{ author }}"

queue_rules:
- name: default
conditions:
- "#approved-reviews-by>=1"

pull_request_rules:
- name: automerge to the base branch with label automerge and branch protection passing
conditions:
- "#approved-reviews-by>=1"
- base=osmo/v0.47.5
- label=A:automerge
actions:
queue:
name: default
method: squash
commit_message_template: |
{{ title }} (#{{ number }})
{{ body }}
- name: backport patches to v22 branch
conditions:
- base=osmo/v0.47.5
- label=A:backport/v22
actions:
backport:
branches:
- osmo-v22/v0.47.5
- name: backport patches to v23 branch
conditions:
- base=osmo/v0.47.5
- label=A:backport/v23
actions:
backport:
branches:
- osmo-v23/v0.47.5
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
branches:
- main
- osmo**
- release/**
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "**.go"
push:
branches:
- main
- osmo**
- release/**
paths:
- "**.go"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gosec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- "go.sum"
push:
branches:
- main
- osmo**
paths:
- "**/*.go"
- "go.mod"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Lint
on:
push:
branches:
- main
- osmo**
- release/**
pull_request:
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staticmajor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Detect leaking resources and bad code patterns
on:
push:
branches:
- main
- osmo**
pull_request:
workflow_dispatch:

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
push:
branches:
- osmo**
- release/v0.47.x

permissions:
Expand Down Expand Up @@ -264,4 +265,4 @@ jobs:
if: env.GIT_DIFF
run: |
cd simapp
go test -mod=readonly -timeout 30m -tags='app_v1 norace ledger test_ledger_mock rocksdb_build' ./...
go test -mod=readonly -timeout 30m -tags='app_v1 norace ledger test_ledger_mock rocksdb_build' ./...
50 changes: 0 additions & 50 deletions .mergify.yml

This file was deleted.

5 changes: 5 additions & 0 deletions baseapp/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ func SetChainID(chainID string) func(*BaseApp) {
return func(app *BaseApp) { app.chainID = chainID }
}

// SetStoreLoader allows us to customize the rootMultiStore initialization.
func SetStoreLoader(loader StoreLoader) func(*BaseApp) {
return func(app *BaseApp) { app.SetStoreLoader(loader) }
}

func (app *BaseApp) SetName(name string) {
if app.sealed {
panic("SetName() on sealed BaseApp")
Expand Down
Loading

0 comments on commit 0a4cbba

Please sign in to comment.