diff --git a/.github/workflows/xtest.yml b/.github/workflows/xtest.yml index 74272eda..bb3ce4ca 100644 --- a/.github/workflows/xtest.yml +++ b/.github/workflows/xtest.yml @@ -502,3 +502,16 @@ jobs: issue_number: context.issue.number, body: md, }) + + test-success: + runs-on: ubuntu-latest + needs: xct + if: always() + steps: + - run: | + result="${{ needs.xct.result }}" + if [[ $result == "success" || $result == "skipped" ]]; then + exit 0 + else + exit 1 + fi