test: dummy PR #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Custom trigger test | ||
on: | ||
issue_comment: | ||
types: [created] | ||
jobs: | ||
test: | ||
if: github.event.issue.pull_request && matches(github.event.comment.body, '/test') | ||
Check failure on line 8 in .github/workflows/custom-test.yaml GitHub Actions / Custom trigger testInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Test step | ||
run: echo "This is a test" |