Skip to content

Commit

Permalink
[CI] Added issue_comment.yml to handle PR reply triggered actions (#2370
Browse files Browse the repository at this point in the history
)

* [Misc] Add test flag when releasing taichi

* [Misc] Added new argument --project_name to build.py

* minor changes

* [Misc] Modified build.py to better execute release

* Update python/build.py

Co-authored-by: Ye Kuang <[email protected]>

* [Misc] Added issue_comment.yml to handle PR reply triggered actions

Co-authored-by: Ye Kuang <[email protected]>
  • Loading branch information
Leonz5288 and k-ye authored May 27, 2021
1 parent 8b5d397 commit 5bd20db
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/issue_comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Handle Issue Comments
on:
issue_comment:
types: [created]

jobs:
check_comments:
runs-on: ubuntu-latest
steps:
- name: Pull Request Comment Trigger
uses: Khan/[email protected]
id: check
with:
trigger: '/run-test'
reaction: rocket
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- name: Skip Tests
if: steps.check.outputs.triggered == 'false'
uses: andymckay/[email protected]

0 comments on commit 5bd20db

Please sign in to comment.