Skip to content

Test issue 1234

Test issue 1234 #2

Workflow file for this run

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 }}