From 46dde4ef5a5ad68dd82d443fc5cea661c8d01cca Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 23 Dec 2025 00:35:03 +0100 Subject: [PATCH] Refactor PR validation workflow to add an in-progress comment step, improving user feedback during icon validation. --- .github/workflows/validate-pr.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/validate-pr.yml b/.github/workflows/validate-pr.yml index 7c1ed6028..bbb8ac49f 100644 --- a/.github/workflows/validate-pr.yml +++ b/.github/workflows/validate-pr.yml @@ -10,6 +10,15 @@ jobs: if: github.repository == 'tabler/tabler-icons' runs-on: ubuntu-latest steps: + - name: Add in progress comment + uses: thollander/actions-comment-pull-request@v2 + with: + comment_tag: validate + mode: recreate + content: | + 🔄 Icons are being validated... Please wait... + continue-on-error: true + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -38,13 +47,7 @@ jobs: restore-keys: | ${{ runner.os }}-pnpm-store- - - name: Add in progress comment - uses: thollander/actions-comment-pull-request@v2 - with: - comment_tag: validate - mode: recreate - content: | - 🔄 Icons are being validated... Please wait... + - name: Install dependencies run: pnpm install --no-frozen-lockfile