Skip to content

Add Issue and PR templates. #560

Add Issue and PR templates.

Add Issue and PR templates. #560

on: pull_request
name: Inspections
jobs:
runPHPCSInspection:
name: Run PHPCS inspection
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run PHPCS inspection with PHP 8.1
uses: rtCamp/action-phpcs-code-review@master
env:
SKIP_FOLDERS: "tests,.github,vendor"
GH_BOT_TOKEN: ${{ secrets.RTBOT_TOKEN }}