aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/issue_comment.yml
blob: 24b9018906c6c8d83294fcda43cfd7eb44e10410 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
on:
  issue_comment:
    types: [created]
name: Commented Pull Request
jobs:
  pullRequestHandler:
    name: PullRequestHandler
    runs-on: windows-latest
    steps:
      - uses: actions/checkout@main
      - name: PullRequestHandler
        uses: ScoopInstaller/GithubActions@main
        if: startsWith(github.event.comment.body, '/verify')
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}