We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 509987f + d0c8c97 commit ee0bcf9Copy full SHA for ee0bcf9
.github/pr-title-checker-config.json
@@ -0,0 +1,14 @@
1
+{
2
+ "LABEL": {
3
+ "name": "title needs formatting",
4
+ "color": "EEEEEE"
5
+ },
6
+ "CHECKS": {
7
+ "prefixes": ["LCORE-"]
8
9
+ "MESSAGES": {
10
+ "success": "All OK",
11
+ "failure": "Failing CI test",
12
+ "notice": ""
13
+ }
14
+}
.github/workflows/pr-title-checker.yaml
@@ -0,0 +1,18 @@
+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.4.3
15
+ with:
16
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
+ pass_on_octokit_error: false
18
+ configuration_path: .github/pr-title-checker-config.json
0 commit comments