From 0b940afdc8291624dc26debf0c93f7daa523400a Mon Sep 17 00:00:00 2001 From: Otavio Pontes Date: Thu, 26 Mar 2020 12:22:24 -0700 Subject: [PATCH] actions: Create a success job to make it easier to check if workflow is ok It's a bit hard to configure github to block PRs when we change the name of tests, so keep one with a constant name to validate PRs Signed-off-by: Otavio Pontes --- .github/workflows/ccpp.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 271809fb..d3565438 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -289,3 +289,10 @@ jobs: - name: print status if: failure() run: cat test-suite.log + + test_successful: + runs-on: ubuntu-latest + needs: [unit_and_style, test_job1, test_job2, test_job3, test_job4, test_job5, test_job6, test_job7, test_job8, test_job9, test_job10] + steps: + - name: Successful + run: echo "Successful"