diff --git a/.github/mergify.yml b/.github/mergify.yml index f27bf0a2..bc04e375 100644 --- a/.github/mergify.yml +++ b/.github/mergify.yml @@ -18,23 +18,21 @@ shared: queue_rules: - name: default - conditions: + queue_conditions: - and: *compulsory - -pull_request_rules: - - name: Automatic merge - conditions: - - and: *compulsory - - # Ensure the review is opted in using labels. - label!=do-not-merge - label=ready-to-merge + merge_conditions: + - and: *compulsory + merge_method: merge + commit_message_template: | + {{ title }} (#{{ number }}) + + {{ body }} + +pull_request_rules: + - name: refactored queue action rule + conditions: [] actions: queue: - method: merge - name: default - commit_message_template: | - {{ title }} (#{{ number }}) - - {{ body }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 051beac7..da1ee483 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -42,7 +42,7 @@ jobs: run: go test -coverprofile=coverage.txt ./... - name: Upload codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -63,7 +63,7 @@ jobs: run: make test-integration - name: Upload codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -108,7 +108,7 @@ jobs: run: make test-e2e - name: Upload codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}