-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
845a572
commit 7ac74ca
Showing
7 changed files
with
1,399 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = { | ||
extends: ["@commitlint/config-conventional"], | ||
rules: { | ||
"body-max-line-length": [0, "always", "Infinity"], | ||
"footer-max-line-length": [0, "always", "Infinity"], | ||
}, | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,13 +18,21 @@ jobs: | |
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Pull request linter action | ||
uses: JulienKode/[email protected] | ||
- name: Validate Pull Request Message | ||
run: | | ||
cat << 'EOM' | npx commitlint --verbose --config .commitlintrc.cjs | ||
${{ github.event.pull_request.title }} | ||
- name: Commit Linter | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
uses: wagoid/[email protected] | ||
${{ github.event.pull_request.body }} | ||
EOM | ||
- name: Validate Commit Messages | ||
run: | | ||
npx commitlint \ | ||
--from ${{ github.event.pull_request.base.sha }} \ | ||
--to ${{ github.event.pull_request.head.sha }} \ | ||
--verbose \ | ||
--config .commitlintrc.cjs | ||
- uses: actions/setup-python@v5 | ||
with: | ||
|
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.