chore: remove temporary fix workflow
CI/CD Pipeline / Validate Code Quality And Tests (push) Successful in 1m43s
CI/CD Pipeline / Frontend Lint (push) Successful in 2m32s
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Integration Tests (push) Successful in 1m57s
CI/CD Pipeline / Integration Tests (pull_request) Successful in 1m54s
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Successful in 1m50s
CI/CD Pipeline / Frontend Lint (pull_request) Successful in 2m58s
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (pull_request) Has been skipped
CI/CD Pipeline / Staging E2E Tests (pull_request) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (pull_request) Has been skipped
CI/CD Pipeline / Build Production Runtime Images (pull_request) Has been skipped
CI/CD Pipeline / Deploy Production (pull_request) Has been skipped
CI/CD Pipeline / Production Browser E2E (pull_request) Has been skipped
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (push) Successful in 5m11s
CI/CD Pipeline / Staging API Integration Tests (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been skipped

This commit is contained in:
2026-07-12 20:45:34 +08:00
parent 423342085c
commit b430c6dfe2
-38
View File
@@ -1,38 +0,0 @@
name: Fix Black + iSort Formatting
on:
push:
branches:
- fix/black-format-render-adapter
jobs:
fix-format:
runs-on: host
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITEA_TOKEN }}
- name: Install and fix formatting
run: |
pip install black isort -q
# Fix isort issues in the specific files
isort apps/worker/video_processing/render_adapter.py
isort apps/worker/video_processing/__init__.py
isort tests/unit/test_render_adapter.py
# Also run black to be safe
black tests/unit/test_render_adapter.py
git config user.name "CI Bot"
git config user.email "ci@xiaoxia.local"
git add -A
if git diff --cached --quiet; then
echo "No changes needed"
else
git commit -m "style: fix isort imports + black formatting"
git push origin fix/black-format-render-adapter
fi