I'm currently running three separate tests suites on Github actions and it triggers when anyone creates or pushes to an open pull request. However, one of these actions contains tests for an upcoming feature that I want others to be aware of, for feedback, but I do not disable the merge button if it fails.
Is there anyway to ignore this just for a single action?
e.g.
GH Action 1 Test -> Pass
GH Action 2 Tests -> Pass
GH Action 3 Tests -> Fail
Merging is still allowed as GH Action 3 is configured to NOT disable the merge button.
Note that inside your Github action workflow file you will need to have a name for the build step if you want it to show up in the search menu.
e.g.