From 0cd2c6b5ada568ffe01bce6d2dd8951457369141 Mon Sep 17 00:00:00 2001 From: Yury Akudovich Date: Fri, 1 Dec 2023 12:42:44 +0100 Subject: [PATCH] ci: Runs spellcheck in merge queue. (#574) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What ❔ Runs spellcheck in merge queue. ## Why ❔ ## Checklist - [x] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [x] Code has been formatted via `zk fmt` and `zk lint`. - [ ] Spellcheck has been run via `cargo spellcheck --cfg=./spellcheck/era.cfg --code 1`. --- .github/workflows/check-spelling.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-spelling.yml b/.github/workflows/check-spelling.yml index 76fd6352c8e..9073401eab9 100644 --- a/.github/workflows/check-spelling.yml +++ b/.github/workflows/check-spelling.yml @@ -5,8 +5,9 @@ on: branches: - main pull_request: + merge_group: -env: +env: CARGO_TERM_COLOR: always jobs: @@ -17,7 +18,7 @@ jobs: uses: taiki-e/install-action@v2 with: tool: cargo-spellcheck - + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 - name: Run cargo-spellcheck