Skip to content

Commit

Permalink
pin to 5.0.0, update config.
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisJim committed Dec 4, 2023
1 parent ffc3c83 commit 00f7c5c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 35 deletions.
77 changes: 43 additions & 34 deletions .github/pr_labeler.yml
Original file line number Diff line number Diff line change
@@ -1,54 +1,63 @@
"core":
- modules/core/**/*
core:
- changed-files:
- any-glob-to-any-file: ['modules/core/**/*']
"02-client":
- modules/core/02-client/**/*
- proto/ibc/core/client/**/*
- changed-files:
- any-glob-to-any-file: ["modules/core/02-client/**/*, "proto/ibc/core/client/**/*"]
"03-connection":
- modules/core/03-connection/**/*
- proto/ibc/core/connection/**/*
- changed-files:
- any-glob-to-any-file: ["modules/core/03-connection/**/*", "proto/ibc/core/connection/**/*"]
"04-channel":
- modules/core/04-channel/**/*
- proto/ibc/core/channel/**/*
- changed-files:
- any-glob-to-any-file: ["modules/core/04-channel/**/*", "proto/ibc/core/channel/**/*"]
"06-solomachine":
- modules/light-clients/06-solomachine/**/*
- proto/ibc/lightclients/solomachine/**/*
- changed-files:
- any-glob-to-any-file: ["modules/light-clients/06-solomachine/**/*", "proto/ibc/lightclients/solomachine/**/*"]
"07-tendermint":
- modules/light-clients/07-tendermint/**/*
- proto/ibc/lightclients/tendermint/**/*
- changed-files:
- any-glob-to-any-file: ["modules/light-clients/07-tendermint/**/*", "proto/ibc/lightclients/tendermint/**/*"]
"08-wasm":
- modules/light-clients/08-wasm/**/*
- proto/ibc/lightclients/wasm/**/*
- changed-files:
- any-glob-to-any-file: ["modules/light-clients/08-wasm/**/*", "proto/ibc/lightclients/wasm/**/*"]
"09-localhost":
- modules/light-clients/09-localhost/**/*
- proto/ibc/lightclients/localhost/**/*
- changed-files:
- any-glob-to-any-file: ["modules/light-clients/09-localhost/**/*", "proto/ibc/lightclients/localhost/**/*"]
"capability":
- modules/capability/**/*
- proto/capability/**/*
- changed-files:
- any-glob-to-any-file: ["modules/capability/**/*", "proto/capability/**/*"]
"20-transfer":
- modules/apps/transfer/**/*
- proto/ibc/applications/transfer/**/*
- changed-files:
- any-glob-to-any-file: ["modules/apps/20-transfer/**/*", "proto/ibc/applications/transfer/**/*"]
"27-interchain-accounts":
- modules/apps/27-interchain-accounts/**/*
- proto/ibc/applications/interchain_accounts/**/*
- changed-files:
- any-glob-to-any-file: ["modules/apps/27-interchain-accounts/**/*", "proto/ibc/applications/interchain_accounts/**/*"]
"29-fee":
- modules/apps/29-fee/**/*
- proto/ibc/applications/fee/**/*
- changed-files:
- any-glob-to-any-file: ["modules/apps/29-fee/**/*", "proto/ibc/applications/fee/**/*"]
"callbacks middleware":
- modules/apps/callbacks/**/*
- changed-files:
- any-glob-to-any-file: ['modules/apps/callbacks/**/*']
"docs":
- docs/**/*
- changed-files:
- any-glob-to-any-file: ['docs/**/*']
"testing":
- testing/**/*
- changed-files:
- any-glob-to-any-file: ['testing/**/*']
"e2e":
- e2e/**/*
- changed-files:
- any-glob-to-any-file: ['e2e/**/*']
"protobuf":
- proto/**/*
- changed-files:
- any-glob-to-any-file: ['proto/**/*']
"gRPC":
- '**/msg_server.go'
- '**/grpc_query.go'
- changed-files:
- any-glob-to-any-file: ["**/msg_server.go", "**/grpc_query.go"]
"CLI":
- '**/client/cli/*'
- changed-files:
- any-glob-to-any-file: ['client/cli/**/*']
"github_actions":
- .github/**/*
- changed-files:
- any-glob-to-any-file: ['.github/**/*']
"dependencies":
- '**/go.mod'
- changed-files:
- any-glob-to-any-file: ['**/go.mod']
3 changes: 2 additions & 1 deletion .github/workflows/pr_labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
pull-requests: write # for actions/labeler to add labels to PRs
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@main
- uses: actions/checkout@v4 # Uploads repository content to the runner
- uses: actions/labeler@v5
with:
configuration-path: .github/pr_labeler.yml
repo-token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down

0 comments on commit 00f7c5c

Please sign in to comment.