From b7c89ccafa660f28ba471db9e5a84fdc26b6d057 Mon Sep 17 00:00:00 2001 From: krassowski <5832902+krassowski@users.noreply.github.com> Date: Tue, 9 Jul 2024 16:28:12 +0100 Subject: [PATCH] Remove unused and outdated update screenshots workflow As of today there are no screenshots --- .../workflows/update-integration-tests.yml | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/update-integration-tests.yml diff --git a/.github/workflows/update-integration-tests.yml b/.github/workflows/update-integration-tests.yml deleted file mode 100644 index 0939768..0000000 --- a/.github/workflows/update-integration-tests.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Update Playwright Snapshots - -on: - issue_comment: - types: [created, edited] - -permissions: - contents: write - pull-requests: write - -jobs: - - - update-snapshots: - if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, 'please update playwright snapshots') }} - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - token: ${{ secrets.GITHUB_TOKEN }} - - - name: Configure git to use https - run: git config --global hub.protocol https - - - name: Checkout the branch from the PR that triggered the job - run: hub pr checkout ${{ github.event.issue.number }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Install dependencies - run: | - set -eux - jlpm - python -m pip install . - - - uses: jupyterlab/maintainer-tools/.github/actions/update-snapshots@v1 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - # Playwright knows how to start JupyterLab server - start_server_script: 'null' - test_folder: ui-tests - \ No newline at end of file