Test issue 1234 #2
This file contains hidden or 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: TC Action Agent - Do It | |
on: issue_comment | |
jobs: | |
pr_commented: | |
# This job only runs for pull request comments | |
name: TC Action Agent - Do It - PR comment | |
if: ${{ github.event.issue.pull_request }} | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo A comment on PR $NUMBER | |
env: | |
NUMBER: ${{ github.event.issue.number }} | |
issue_commented: | |
# This job only runs for issue comments | |
name: TC Action Agent - Do It - Issue comment | |
if: ${{ !github.event.issue.pull_request }} | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo A comment on issue $NUMBER | |
env: | |
NUMBER: ${{ github.event.issue.number }} |