Skip to content

Commit

Permalink
👍 update model
Browse files Browse the repository at this point in the history
  • Loading branch information
shun198 committed Jun 9, 2024
1 parent 33c1ac5 commit 7a62ff3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-without-model.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
id: check_changes
run: |
MODEL_CHANGED=false
if git diff --name-only origin/${{ github.head_ref }} | grep -c ${{ env.WORKING_DIRECTORY }}/application/models/ > 0; then
if git diff --name-only HEAD | grep -c ${{ env.WORKING_DIRECTORY }}/application/models/ > 0; then
echo $MODEL_CHANGED
MODEL_CHANGED=true
fi
Expand Down
2 changes: 1 addition & 1 deletion application/application/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class User(AbstractUser):
"""システムユーザModel"""
"""システムユーザ"""

username_validator = UnicodeUsernameValidator()

Expand Down

0 comments on commit 7a62ff3

Please sign in to comment.