From dffcbba903d494f9459d7ccca4b363b968f099f9 Mon Sep 17 00:00:00 2001 From: Mathieu Scheltienne Date: Mon, 16 Dec 2024 10:53:01 +0100 Subject: [PATCH] Remove pylsl comparison workflow (#381) --- .github/workflows/pylsl.yaml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/pylsl.yaml diff --git a/.github/workflows/pylsl.yaml b/.github/workflows/pylsl.yaml deleted file mode 100644 index a9ff35cc1..000000000 --- a/.github/workflows/pylsl.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: pylsl -concurrency: - group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }} - cancel-in-progress: true -on: # yamllint disable-line rule:truthy - workflow_dispatch: - schedule: - - cron: '0 8 * * 1' - -jobs: - sha256: - timeout-minutes: 2 - runs-on: ubuntu-latest - env: - SHA256_PYLSL: 0a384000acdd5f831376d142b4aea373693f1e356ab1cd3dbdef10896acf74e3 - steps: - - name: Checkout pylsl repository - uses: actions/checkout@v4 - with: - repository: labstreaminglayer/pylsl - - name: Compare checksum - run: echo "$SHA256_PYLSL pylsl/pylsl.py" | sha256sum -c - - name: Create GitHub issue - if: ${{ failure() }} - uses: dacbd/create-issue-action@main - with: - token: ${{ github.token }} - title: pyLSL is out of sync with MNE-LSL - body: | - Please visit https://github.com/labstreaminglayer/pylsl and review the changes. - [Failed Run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) - assignees: mscheltienne