From cba93edc62ab1c7f528bfa8180ad7aebaa4e2cb3 Mon Sep 17 00:00:00 2001 From: mirage <119869686+ClementBobin@users.noreply.github.com> Date: Fri, 27 Mar 2026 11:12:30 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20supprimer=20la=20v=C3=A9rification=20de?= =?UTF-8?q?=20performance=20dans=20le=20workflow=20de=20contr=C3=B4le=20de?= =?UTF-8?q?s=20PR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/pr-endpoint-check.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.gitea/workflows/pr-endpoint-check.yml b/.gitea/workflows/pr-endpoint-check.yml index 4867683..ee35d3c 100644 --- a/.gitea/workflows/pr-endpoint-check.yml +++ b/.gitea/workflows/pr-endpoint-check.yml @@ -121,15 +121,4 @@ jobs: -H "Authorization: token $GITEA_TOKEN" \ -H "Content-Type: application/json" \ -d "$(jq -n --arg body "$BODY" '{body: $body}')" \ - "$GITEA_SERVER_URL/api/v1/repos/$REPO/issues/$PR_NUMBER/comments" - - - name: Enforce performance gate - if: always() - run: | - FAILED="${{ steps.perf_test.outputs.failed }}" - if [ "${FAILED:-0}" -gt 0 ]; then - echo "❌ PR REJETÉE : ${FAILED} endpoint(s) n'ont pas respecté le seuil d'une seconde." - exit 1 - else - echo "✅ Tous les endpoints ont passé le contrôle de performance." - fi \ No newline at end of file + "$GITEA_SERVER_URL/api/v1/repos/$REPO/issues/$PR_NUMBER/comments" \ No newline at end of file