ci: Add pr title checker (#155)

This commit is contained in:
evenyag
2022-08-08 18:27:02 +08:00
committed by GitHub
parent 80372720bb
commit 567510fa3e
2 changed files with 29 additions and 0 deletions

19
.github/workflows/pr-title-checker.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: "PR Title Checker"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
- labeled
- unlabeled
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: thehanimo/pr-title-checker@v1.3.4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
configuration_path: ".github/pr-title-checker-config.json"