chore(ci): add an end job to verify the pipeline finished with success #2991
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
It adds an end job after the tests, if and only if there are modules to be tested. Also updates the GH repo settings to use this end job as GitHub check as the only required check for merging PRs.
The end job needs the
detect-modules
and thetest
jobs in order to be run, so it will always run at the end of the pipeline. The job will check if previous jobs failed or were cancelled, failing the job in those cases. Else, it prints out a success message, finishing the job successfully, creating a passed GH check.Why is it important?
After the refactor of the pipeline to run the modified modules, the GH check was not updated (on purpose). This PR allows maintainers to see if a PR satisfies the required GH checks when reviewing and eventually merging a PR.
Related Issues