From 33a788b35382028f9e8ab95321060a18388a474f Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Thu, 12 Sep 2024 18:04:05 +0000 Subject: [PATCH] ICU-22721 Set delay for CI enforce checks job to allow other jobs to init See #3160 --- .github/workflows/wait-for-checks.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wait-for-checks.yml b/.github/workflows/wait-for-checks.yml index b556cbee88a1..56eac3b305fa 100644 --- a/.github/workflows/wait-for-checks.yml +++ b/.github/workflows/wait-for-checks.yml @@ -29,5 +29,9 @@ jobs: # It won't pass until all of the pipeline's checks pass. # For the ICU4J and ICU4C pipelines, this is called `CI-ICU4J` and `CI-ICU4C`. # These checks will return a "neutral" status, which this GH Action interprets as a failure. + # ClusterFuzzLite/CIFuzz appears to be spawned after a CIFuzz job finishes, but its status of + # "neutral" is interpreted by this action as a failure. # Since the jobs are superfluous, they can be ignored. - ignore: "CI-ICU4C,CI-ICU4J" + ignore: "CI-ICU4C,CI-ICU4J,ClusterFuzzLite/CIFuzz" + # Wait for 2 minutes before this action begins its work by polling Github for job/check status + delay: 120s