Skip to content

Commit

Permalink
add ci yaml with issue trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
nick authored and nick committed Nov 7, 2023
1 parent a3285d2 commit 3152f48
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
issue_comment:
types:
- created

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check PR Comment
run: |
if [[ "${{ github.event.comment.body }}" == *"/trigger-ci"* ]]; then
echo "CI triggered by comment"
# Add your build and test steps here
fi

0 comments on commit 3152f48

Please sign in to comment.