mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
d114353556
* [CI] Update PR Cop to run on more events * Update prcop.yml * Update prcop.yml * Update e2e PR * Update e2e-visual.yml
27 lines
529 B
YAML
27 lines
529 B
YAML
name: PRCop
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- edited
|
|
- synchronize
|
|
- ready_for_review
|
|
- review_requested
|
|
- review_request_removed
|
|
pull_request_review_comment:
|
|
types:
|
|
- created
|
|
|
|
jobs:
|
|
prcop:
|
|
runs-on: ubuntu-latest
|
|
name: Template Check
|
|
steps:
|
|
- name: Linting Pull Request
|
|
uses: makaroni4/prcop@v1.0.35
|
|
with:
|
|
config-file: ".github/workflows/prcop-config.json"
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|