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.