1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

feat(readme-generator/regen_readme_in_batch): output link to repository

This commit is contained in:
Laurent Peuch 2024-03-29 06:54:18 +01:00
parent 96380acab4
commit 8207d763e6

View file

@ -58,7 +58,7 @@ async def regen_readme(repository, branch):
await git(["commit", "-a", "-m", "Auto-update README", "--author='yunohost-bot <yunohost@yunohost.org>'"], in_folder=folder) await git(["commit", "-a", "-m", "Auto-update README", "--author='yunohost-bot <yunohost@yunohost.org>'"], in_folder=folder)
await git(["push", "origin", branch, "--quiet"], in_folder=folder) await git(["push", "origin", branch, "--quiet"], in_folder=folder)
print(f"Updated {repository}") print(f"Updated https://github.com/{repository}")
if __name__ == '__main__': if __name__ == '__main__':