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