You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Changes and Updates
- Support private repos
- Change the configuration file from .validationconfig to .github folder
# Breaking Changes
- Configuration changes
Copy file name to clipboardexpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# commit-message-validator
1
+
# Commit Message Lint
2
2
Github app to validate commit message and pull request title on a pull request
3
3
4
4
## Description
@@ -7,19 +7,19 @@ This app runs a format check on commit messages and pull request title on the cr
7
7
For example, let's say you specify that a commit message should have a format `DDD:message`. Here D stand for numeric digit. The app checks if the commit message follows this format. If all the commit messages follow this format, the check returns successful, otherwise failure. The reviewer can then decide if they want to go ahead with the code merge.
8
8
9
9
### App URL
10
-
https://github.com/apps/commit-message-validator
10
+
https://github.com/apps/commit-message-lint
11
11
12
12
## Installation
13
13
14
14
Use the Github's app section or above URL to install the app to your repository.
15
15
16
-
## Setup
16
+
## Configuration
17
17
18
-
You would need to add a configuration file named `.validationconfig` to the root of your repository. The contents of that file will be:
18
+
You would need to add a configuration folder named `.github` at the root of your repository. The folder should contain a file named `config.yml`. This file will serve as the configuration and the contents of that file will be:
0 commit comments