Fixed issue in pipeline

This commit is contained in:
2024-04-01 19:26:14 +02:00
parent 515c3372c6
commit 65c8203348
2 changed files with 6 additions and 0 deletions

View File

@@ -33,6 +33,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: setup git
run: |
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Action"
- name: Git Version
uses: codacy/git-version@2.8.0
id: git_version

View File

@@ -4,6 +4,7 @@ from uuid import UUID
from pydantic import BaseModel, ConfigDict
# The created_by_id is a string because we use the sub from Auth0
class BaseSchemaModelIN(BaseModel):
created_by_id: str
model_config = ConfigDict(from_attributes=True)