mirror of
https://github.com/suitenumerique/meet.git
synced 2026-09-01 05:07:56 +00:00
🚚(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:
@@ -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: |
|
||||||
Reference in New Issue
Block a user