From 9c0e5039461060ca5b07e295ab1d6bb4e66b4c93 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Tue, 20 May 2025 10:04:17 +0200 Subject: [PATCH] [CI] Resolve yamllint concerns --- .github/workflows/main.yml | 5 ++++- .github/workflows/static-analysis-pr.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e6234ab1f..aaa12efb8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,10 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} - cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.event_name != 'merge_group' && !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} # yamllint disable-line + cancel-in-progress: >- + ${{ github.ref != 'refs/heads/master' && + github.event_name != 'merge_group' && + !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} jobs: clang-format: diff --git a/.github/workflows/static-analysis-pr.yml b/.github/workflows/static-analysis-pr.yml index 39879f820..e5aa5c86c 100644 --- a/.github/workflows/static-analysis-pr.yml +++ b/.github/workflows/static-analysis-pr.yml @@ -4,7 +4,10 @@ on: [pull_request] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} - cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.event_name != 'merge_group' && !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} # yamllint disable-line + cancel-in-progress: >- + ${{ github.ref != 'refs/heads/master' && + github.event_name != 'merge_group' && + !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} jobs: clang-tidy: