Skip to content

Commit

Permalink
Merge branch 'main' into f/stkxprt-improved
Browse files Browse the repository at this point in the history
  • Loading branch information
puneet2019 authored Dec 16, 2023
2 parents 187aa1f + 76d09ae commit c5cc7c3
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 29 deletions.
65 changes: 42 additions & 23 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,52 @@
# Note that any updates to this files will not be applied in CI
# until this file is merged into main. This is due to oddities of the labeller Github Action.
"C:app-wiring":
- app/*.go
- app/ante/**/*
- app/**/*
- cmd/**/**/*
- cmd/**/*
# Also match any module.go update
- x/**/module.go
- changed-files:
- any-glob-to-any-file:
- app/*.go
- app/ante/**
- app/**
- cmd/**
# Also match any module.go update
- x/**/module.go

"C:x/liquidstakeibc":
- x/liquidstakeibc/**/*
- changed-files:
- any-glob-to-any-file:
- x/liquidstakeibc/**
"C:x/liquidstake":
- changed-files:
- any-glob-to-any-file:
- x/liquidstake/**
"C:x/lscosmos":
- changed-files:
- any-glob-to-any-file:
- x/lscosmos/**
"T:build":
- Makefile
- Dockerfile
- scripts/*
- docker/**
- changed-files:
- any-glob-to-any-file:
- Makefile
- Dockerfile
- scripts/*
- docker/**
"T:CI":
- .github/**/*.yml
- .golangci.yml
- contrib/**
- changed-files:
- any-glob-to-any-file:
- .github/**/*.yml
- .golangci.yml
- contrib/**
"C:CLI":
- x/*/client/**/*
- changed-files:
- any-glob-to-any-file:
- x/*/client/**
# Add "C:docs" label to documented related files and directories.
"C:docs":
- bug.md
- issue.md
- proto-docs.md
- README.md
- x/**/*.md
- x/**/*/*.md
- tests/**/*.md
- changed-files:
- any-glob-to-any-file:
- bug.md
- issue.md
- proto-docs.md
- README.md
- x/**/*.md
- x/**/*/*.md
- tests/**/*.md
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.19
go-version: ^1.21
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
pull-requests: write

steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v5.0.0
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.21

- uses: actions/checkout@v4

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.21

- uses: actions/checkout@v4

Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
- name: Setup Go with cache
uses: magnetikonline/action-golang-cache@v4
with:
go-version: 1.20.0
go-version: 1.21.0
id: go

- name: Checkout repository
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
- name: Setup Go with cache
uses: magnetikonline/action-golang-cache@v4
with:
go-version: 1.20.0
go-version: 1.21.0
id: go

- name: Checkout repository
Expand Down

0 comments on commit c5cc7c3

Please sign in to comment.