diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 226ac26..cd38fbc 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -49,5 +49,8 @@ jobs: - name: Create Tag run: git tag -a v${{ steps.git_version.outputs.version }} -m "v${{ steps.git_version.outputs.version }}" - - name: Push Tag - run: git push origin v${{ steps.git_version.outputs.version }} + - uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: Adjusted files for isort & autopep + commit_options: --tags + diff --git a/creyPY/fastapi/pagination.py b/creyPY/fastapi/pagination.py index 9ae9574..48103ea 100644 --- a/creyPY/fastapi/pagination.py +++ b/creyPY/fastapi/pagination.py @@ -9,6 +9,7 @@ from pydantic.json_schema import SkipJsonSchema T = TypeVar("T") +# TODO: Add complete fastapi-pagination proxy here # SkipJsonSchema is used to avoid generating invalid JSON schema in FastAPI class Page(AbstractPage[T], Generic[T]): results: Sequence[T]