From 10175b91b6b8c2c3ecdcb22d6d844748f9fcc516 Mon Sep 17 00:00:00 2001 From: Damian Nolan Date: Thu, 10 Oct 2024 17:36:37 +0200 Subject: [PATCH 1/3] ci: mergify updates (#7439) --- .github/mergify.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/mergify.yml b/.github/mergify.yml index a39fae4d878..d8bb1105e59 100644 --- a/.github/mergify.yml +++ b/.github/mergify.yml @@ -1,6 +1,9 @@ queue_rules: - name: default - conditions: + commit_message_template: | + {{ title }} (#{{ number }}) + {{ body }} + merge_conditions: - "#approved-reviews-by>=1" - base=main - label=automerge @@ -14,10 +17,7 @@ pull_request_rules: actions: queue: name: default - method: squash - commit_message_template: | - {{ title }} (#{{ number }}) - {{ body }} + merge_method: squash - name: backport patches to v0.1.x callbacks ibc-go v7.3.x branch conditions: - base=main From 9f13c9f36982669945a507cf40045e681d756e06 Mon Sep 17 00:00:00 2001 From: kobakaku <82507211+kobakaku@users.noreply.github.com> Date: Mon, 14 Oct 2024 15:59:39 +0900 Subject: [PATCH 2/3] feat(ci): add proto-breaking-check workflow (#7440) --- .github/workflows/proto-breaking-check.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/proto-breaking-check.yml diff --git a/.github/workflows/proto-breaking-check.yml b/.github/workflows/proto-breaking-check.yml new file mode 100644 index 00000000000..8e675beb0f3 --- /dev/null +++ b/.github/workflows/proto-breaking-check.yml @@ -0,0 +1,16 @@ +name: proto breaking check +# proto breaking check workflow checks if Protobuf file contains breaking changes. +# This workflow runs when a PR that targets Protobuf is opened. +on: + merge_group: + pull_request: + paths: + - "proto/**/*.proto" + +jobs: + proto-breaking-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run proto-breaking check + run: make proto-check-breaking \ No newline at end of file From 0f4b8dd9e7f4fccdde59c2b2fe23d8928538feb6 Mon Sep 17 00:00:00 2001 From: kobakaku <82507211+kobakaku@users.noreply.github.com> Date: Mon, 14 Oct 2024 19:29:14 +0900 Subject: [PATCH 3/3] fix(lint): replace loopvar linter (#7442) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> --- .golangci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 32cd4cb67af..dc20f7102ee 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -5,7 +5,7 @@ run: linters: disable-all: true enable: - - exportloopref + - copyloopvar - errcheck - gci - goconst