Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Schrodinger71 committed Dec 27, 2024
1 parent 6eff183 commit 3f21496
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions commands/github/check_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,14 @@ async def check_workflows():
# Если на странице нет следующей страницы, выходим из цикла
if 'next' not in response.links or page == 3:
break

# Переходим к следующей странице
page += 1

# Если более одного процесса в статусе 'in_progress', завершаем работу
if in_progress_count > 1:
print("❌ Обнаружено более одного запущенного workflow 'Deploy Discord-Bot'. Завершаем процесс...")
print("❌ Обнаружено более одного запущенного workflow "
"'Deploy Discord-Bot'. Завершаем процесс... "
f"in_progress_count = {in_progress_count}")
# Закрываем бота и завершаем выполнение скрипта
await bot.close()
sys.exit(0)
Expand Down

0 comments on commit 3f21496

Please sign in to comment.