Skip to content

Commit

Permalink
Merge branch 'trigger-with-comment' of github.com:huggingface/transfo…
Browse files Browse the repository at this point in the history
…rmers into trigger-with-comment
  • Loading branch information
ArthurZucker committed Aug 28, 2024
2 parents 4d0516c + aa75652 commit 226accf
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/self-comment-slow-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 226accf

Please sign in to comment.