similar to How can I attach a manual workflow run to a pull request's status checks? but the difference is that my manual workflow will run for the same branch
I have a workflow that takes a long time to finish, so I made it into a manual workflow, however it won't show up in the PR's check after I run it, wondering if there's a way to add it to the checks using GitHub Actions?
Update
I ended up using wait-on-check-action to check job status of the manual workflow, it will fail at first, needs to be rerun after the manual workflow is triggered.