From 0f197f9d3343bc0e9a29d6fdb51a57f8264498be Mon Sep 17 00:00:00 2001 From: "Stas German (SBI)" Date: Tue, 23 Jun 2026 03:26:21 +0900 Subject: [PATCH] actions, daily_checks: Report missing voters for votes expiring in 48h Before: - report missing voters for votes expiring in 24h (effectively 0h - 24h before expiration) After: - report missing voters for votes expiring in 48h (effectively once 24h - 48h and then again 0h - 24h before expiration) Signed-off-by: Stas German (SBI) --- .github/workflows/daily_checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/daily_checks.yml b/.github/workflows/daily_checks.yml index 680213c..5374ac3 100644 --- a/.github/workflows/daily_checks.yml +++ b/.github/workflows/daily_checks.yml @@ -59,7 +59,7 @@ jobs: id: get-missing-voters if: success() || failure() # Run this step even if one of the previous steps failed run: | - result=$(scripts/get-missing-voters.sh 1) && exit_code=$? || exit_code=$? + result=$(scripts/get-missing-voters.sh 2) && exit_code=$? || exit_code=$? echo "$result" {