custom dify_app #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: autofix.ci | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| push: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| if: github.repository == 'langgenius/dify' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check Docker Compose inputs | |
| id: docker-compose-changes | |
| uses: tj-actions/changed-files@v47 | |
| with: | |
| files: | | |
| docker/generate_docker_compose | |
| docker/.env.example | |
| docker/docker-compose-template.yaml | |
| docker/docker-compose.yaml | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - uses: astral-sh/setup-uv@v7 | |
| - name: Generate Docker Compose | |
| if: steps.docker-compose-changes.outputs.any_changed == 'true' | |
| run: | | |
| cd docker | |
| ./generate_docker_compose | |
| - run: | | |
| cd api | |
| uv sync --dev | |
| # fmt first to avoid line too long | |
| uv run ruff format .. | |
| # Fix lint errors | |
| uv run ruff check --fix . | |
| # Format code | |
| uv run ruff format .. | |
| - name: count migration progress | |
| run: | | |
| cd api | |
| ./cnt_base.sh | |
| - name: ast-grep | |
| run: | | |
| # ast-grep exits 1 if no matches are found; allow idempotent runs. | |
| uvx --from ast-grep-cli ast-grep --pattern 'db.session.query($WHATEVER).filter($HERE)' --rewrite 'db.session.query($WHATEVER).where($HERE)' -l py --update-all || true | |
| uvx --from ast-grep-cli ast-grep --pattern 'session.query($WHATEVER).filter($HERE)' --rewrite 'session.query($WHATEVER).where($HERE)' -l py --update-all || true | |
| uvx --from ast-grep-cli ast-grep -p '$A = db.Column($$$B)' -r '$A = mapped_column($$$B)' -l py --update-all || true | |
| uvx --from ast-grep-cli ast-grep -p '$A : $T = db.Column($$$B)' -r '$A : $T = mapped_column($$$B)' -l py --update-all || true | |
| # Convert Optional[T] to T | None (ignoring quoted types) | |
| cat > /tmp/optional-rule.yml << 'EOF' | |
| id: convert-optional-to-union | |
| language: python | |
| rule: | |
| kind: generic_type | |
| all: | |
| - has: | |
| kind: identifier | |
| pattern: Optional | |
| - has: | |
| kind: type_parameter | |
| has: | |
| kind: type | |
| pattern: $T | |
| fix: $T | None | |
| EOF | |
| uvx --from ast-grep-cli ast-grep scan . --inline-rules "$(cat /tmp/optional-rule.yml)" --update-all | |
| # Fix forward references that were incorrectly converted (Python doesn't support "Type" | None syntax) | |
| find . -name "*.py" -type f -exec sed -i.bak -E 's/"([^"]+)" \| None/Optional["\1"]/g; s/'"'"'([^'"'"']+)'"'"' \| None/Optional['"'"'\1'"'"']/g' {} \; | |
| find . -name "*.py.bak" -type f -delete | |
| # mdformat breaks YAML front matter in markdown files. Add --exclude for directories containing YAML front matter. | |
| - name: mdformat | |
| run: | | |
| uvx --python 3.13 mdformat . --exclude ".claude/skills/**" | |
| - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 |