From 69f24af25cfb780c0b1d89d2b0345dedb176c68e Mon Sep 17 00:00:00 2001 From: pavlov346346-source Date: Tue, 8 Sep 2026 13:22:00 +0300 Subject: [PATCH] Remove one-time v17.7.0 E2E workflow --- .github/workflows/fix-e2e-v1770.yml | 30 ----------------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/fix-e2e-v1770.yml diff --git a/.github/workflows/fix-e2e-v1770.yml b/.github/workflows/fix-e2e-v1770.yml deleted file mode 100644 index cdfb05d..0000000 --- a/.github/workflows/fix-e2e-v1770.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Fix v17.7.0 E2E checks - -on: - push: - branches: - - feature/v17.7.0-architecture-foundation - paths: - - .github/workflows/fix-e2e-v1770.yml - -permissions: - contents: write - -jobs: - fix: - if: github.actor != 'github-actions[bot]' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 22 - - name: Stabilize E2E assertions - run: node .github/scripts/fix-e2e-v1770.mjs - - name: Commit - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add tests/app.spec.mjs - git commit -m "Stabilize v17.7.0 E2E checks" - git push