Skip to content

Commit

Permalink
replace full_name with url
Browse files Browse the repository at this point in the history
  • Loading branch information
honzajavorek committed Apr 15, 2024
1 parent 3205d2a commit 9d2e0f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jg/hen/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,10 @@ async def has_old_repo_archived(
if repo.archived:
return (
ResultType.DONE,
f"Repozitář {repo.full_name} je celkem starý (poslední změna {pushed_on:%-d.%-m.%Y}). Je dobře, že je archivovaný.",
f"Repozitář {repo.url} je celkem starý (poslední změna {pushed_on:%-d.%-m.%Y}). Je dobře, že je archivovaný.",
)
else:
return (
ResultType.WARNING,
f"Na repozitáři {repo.full_name} se naposledy pracovalo {pushed_on:%-d.%-m.%Y}. Možná by šlo repozitář archivovat.",
f"Na repozitáři {repo.url} se naposledy pracovalo {pushed_on:%-d.%-m.%Y}. Možná by šlo repozitář archivovat.",
)

0 comments on commit 9d2e0f2

Please sign in to comment.