diff --git a/.github/workflows/self-comment-slow-ci.yml b/.github/workflows/self-comment-slow-ci.yml index d4e626eec3b95f..38f4b8b31bd83a 100644 --- a/.github/workflows/self-comment-slow-ci.yml +++ b/.github/workflows/self-comment-slow-ci.yml @@ -34,16 +34,18 @@ jobs: NUMBER: ${{ github.event.issue.number }} - testing-stuff-around: - if: contains(github.event.comment.html_url, '/pull/') # check if the comments come from pull request, exclude those from issue. - runs-on: ubuntu-22.04 - steps: - - name: say hello - if: contains(github.event.comment.body, '/support') # check the comment if it contains the keywords - run: echo say hello - - name: test - if: contains(github.event.comment.body, '/test') # check the comment if it contains the keywords - run: echo test + testing-stuff-around: + if: contains(github.event.comment.html_url, '/pull/') # check if the comments come from pull request, exclude those from issue. + runs-on: ubuntu-22.04 + steps: + - name: say hello + if: contains(github.event.comment.body, '/support') # check the comment if it contains the keywords + run: | + echo say hello + - name: test + if: contains(github.event.comment.body, '/test') # check the comment if it contains the keywords + run: | + echo test find_models_to_run: runs-on: ubuntu-22.04