From 19319944754b184f75e91d53b7aad755513a1716 Mon Sep 17 00:00:00 2001 From: pavlov346346-source Date: Tue, 8 Sep 2026 06:55:10 +0300 Subject: [PATCH] Remove one-time v17.6.6 picker fix workflow --- .github/workflows/fix-v1766-picker.yml | 28 -------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/fix-v1766-picker.yml diff --git a/.github/workflows/fix-v1766-picker.yml b/.github/workflows/fix-v1766-picker.yml deleted file mode 100644 index 0730e84..0000000 --- a/.github/workflows/fix-v1766-picker.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Fix v17.6.6 picker declaration - -on: - push: - branches: - - feature/v17.6.6-offer-templates - paths: - - .github/workflows/fix-v1766-picker.yml - -permissions: - contents: write - -jobs: - fix: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Fix picker declaration - run: | - sed -i 's/function ensureOfferPicker(){ function ensureOfferPicker(){/function ensureOfferPicker(){/' public/core/ux-fixes-v1764.js - node --check public/core/ux-fixes-v1764.js - - name: Commit - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add public/core/ux-fixes-v1764.js - git commit -m "Fix v17.6.6 offer picker declaration" || exit 0 - git push