From d0cd08378e19260848fe461931338a2a806e1a52 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Tue, 18 Nov 2025 21:46:19 +0800 Subject: [PATCH] remove unwanted workflow --- .github/workflows/check-vendor.yml | 52 ------------------------------ 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/check-vendor.yml diff --git a/.github/workflows/check-vendor.yml b/.github/workflows/check-vendor.yml deleted file mode 100644 index 7b3016079..000000000 --- a/.github/workflows/check-vendor.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Check vendor - -on: - workflow_dispatch: # allows manual triggering - push: - branches: - - master - paths: [ - 'vendor/**', - 'scripts/sync_vendor.py' - ] - - pull_request: - types: [opened, synchronize, reopened] - paths: [ - 'vendor/**', - 'scripts/sync_vendor.py' - ] - -jobs: - check-vendor: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Setup Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' - - - name: Run vendor sync - run: | - set -euo pipefail - python3 scripts/sync_vendor.py - - - name: Check for changes - run: | - set -euo pipefail - # detect modified or untracked files - changed=$(git status --porcelain --untracked-files=all || true) - if [ -n "$changed" ]; then - echo "Vendor sync modified files:" - echo "$changed" | awk '{ print $2 }' | sed '/^$/d' - echo "Failing because vendor files mismatch. Please update scripts/sync_vendor.py" - exit 1 - else - echo "Vendor files are up-to-date." - fi