🚚(ci) rename meet.yml to ci.yml

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.
This commit is contained in:
davd-gzl
2026-08-15 15:48:08 +00:00
committed by aleb_the_flash
parent aafbc752d5
commit 7538cd886b
@@ -1,4 +1,4 @@
name: meet Workflow name: CI
on: on:
push: push:
@@ -26,7 +26,7 @@ jobs:
- name: Enforce absence of print statements in code - name: Enforce absence of print statements in code
if: always() if: always()
run: | 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 - name: Check absence of fixup commits
if: always() if: always()
run: | run: |