22 lines
508 B
YAML
22 lines
508 B
YAML
name: PR CheckTitle
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened, synchronized, edited, labeled, unlabeled]
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
title-check:
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: thehanimo/pr-title-checker@v1.3.5
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
pass_on_octokit_error: false
|
|
configuration_path: ".github/pr_title_checker_config.json"
|