From 2b10d703e0c90be8220377cfa62366f75802c1a9 Mon Sep 17 00:00:00 2001 From: pavlov346346-source Date: Wed, 9 Sep 2026 11:58:00 +0300 Subject: [PATCH] chore: add v17.7.3 patch workflow --- .github/workflows/v1773-patch.yml | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/v1773-patch.yml diff --git a/.github/workflows/v1773-patch.yml b/.github/workflows/v1773-patch.yml new file mode 100644 index 0000000..b8f6439 --- /dev/null +++ b/.github/workflows/v1773-patch.yml @@ -0,0 +1,32 @@ +name: Caterium v17.7.3 patch +on: + workflow_dispatch: + push: + branches: [feat/v17-7-3-clients-server-read] + paths: + - ops/v1773-patch.mjs + - .github/workflows/v1773-patch.yml +permissions: + contents: write +jobs: + patch: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + ref: feat/v17-7-3-clients-server-read + - uses: actions/setup-node@v4 + with: + node-version: 22 + - run: node ops/v1773-patch.mjs + - run: npm install + - run: npm run check:deploy + - run: npx playwright install --with-deps chromium + - run: npm run test:e2e + - name: Commit generated v17.7.3 files + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add package.json package-lock.json public docs ops/sql tests + git commit -m "Caterium v17.7.3 — clients server read" || exit 0 + git push