From a0be74432c6c8ba54184717f338caec398f180a2 Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Thu, 20 Apr 2023 06:20:18 -0600 Subject: [PATCH] gh-263: Remove detection bit for a while --- .github/workflows/main.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 44dbdfca..bc9fe75e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -69,15 +69,3 @@ jobs: id: pyperformance run: python -u -m pyperformance.tests continue-on-error: ${{ matrix.experimental }} - - name: Notify result for experimental tasks (Failure) - uses: marocchino/sticky-pull-request-comment@v2 - if: ${{ steps.pyperformance.outcome != 'success' && matrix.experimental }} - with: - message: | - ❌: ${{ matrix.os }} - ${{ matrix.python }} has failed, but allowed as the experimental task. - - name: Notify result for experimental tasks (Success) - uses: marocchino/sticky-pull-request-comment@v2 - if: ${{ steps.pyperformance.outcome == 'success' && matrix.experimental }} - with: - message: | - ✅: ${{ matrix.os }} - ${{ matrix.python }} has passed, now we can disable the experimental flag.