Home > Mobile >  Github action check hanging forever
Github action check hanging forever

Time:08-01

Issue

After removing an action, sync this change in master, all prs started to have this hanging job.

test Expected Waiting for status to be reported

enter image description here

I tried closing and reopening prs, triggering jobs again, nothing worked. I dont have any single reference in my github workflow files of it, neither in github actions...

CodePudding user response:

This happens because the status check is set as "required" in the branch protection rules.

To disable, in the GitHub repo > Settings > Branches > Branch protection rules > Edit master > Status checks that are required > remove test.

  • Related