From f065537a7e72eef9139a807065dd58c0bd67aeb5 Mon Sep 17 00:00:00 2001 From: blyxyas Date: Mon, 14 Jul 2025 15:48:39 +0200 Subject: [PATCH] Do not run lintcheck summary on feature-freezed PRs Correct label name --- .github/workflows/lintcheck_summary.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lintcheck_summary.yml b/.github/workflows/lintcheck_summary.yml index 52f52e155a07..e7d9a14b6d1a 100644 --- a/.github/workflows/lintcheck_summary.yml +++ b/.github/workflows/lintcheck_summary.yml @@ -24,7 +24,8 @@ permissions: jobs: download: runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'success' }} + # FIXME(feature freeze): Make sure to remove that last part after the feature freeze is over + if: ${{ github.event.workflow_run.conclusion == 'success' && ! contains(github.event.pull_request.labels.*.name, 'A-lint') }} steps: - name: Download artifact uses: actions/download-artifact@v4 @@ -68,7 +69,7 @@ jobs: } let summary = `Lintcheck changes for ${context.payload.workflow_run.head_sha} - + | Lint | Added | Removed | Changed | | ---- | ----: | ------: | ------: | `;