17 lines
455 B
YAML
17 lines
455 B
YAML
on:
|
|
issue_comment:
|
|
types: [ created ]
|
|
name: Commented Pull Request
|
|
jobs:
|
|
pullRequestHandler:
|
|
name: Pull Request Validator
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- name: Pull Request Validation
|
|
uses: Ash258/Scoop-GithubActions@stable-win
|
|
if: startsWith(github.event.comment.body, '/verify')
|
|
env:
|
|
GITH_EMAIL: earnestma@hotmail.com
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|