From 7538cd886b2db76bd3776f5845c9418ab4ecc9c2 Mon Sep 17 00:00:00 2001 From: davd-gzl <60177543+davd-gzl@users.noreply.github.com> Date: Sat, 15 Aug 2026 15:48:08 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9A(ci)=20rename=20meet.yml=20to=20ci.?= =?UTF-8?q?yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The repository is already called meet, so the file name said nothing about what the workflow holds. The print-statement check now excludes the whole workflows directory rather than one file by name: its own grep carries the literal print(, so the rename would otherwise match it on the deleted lines and fail the job. --- .github/workflows/{meet.yml => ci.yml} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{meet.yml => ci.yml} (99%) diff --git a/.github/workflows/meet.yml b/.github/workflows/ci.yml similarity index 99% rename from .github/workflows/meet.yml rename to .github/workflows/ci.yml index 9c36994a..fd319e2c 100644 --- a/.github/workflows/meet.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: meet Workflow +name: CI on: push: @@ -26,7 +26,7 @@ jobs: - name: Enforce absence of print statements in code if: always() run: | - ! git diff origin/${{ github.event.pull_request.base.ref }}..HEAD -- . ':(exclude)**/meet.yml' | grep "print(" + ! git diff origin/${{ github.event.pull_request.base.ref }}..HEAD -- . ':(exclude).github/workflows/**' | grep "print(" - name: Check absence of fixup commits if: always() run: |