We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce3c384 commit 35fbd4aCopy full SHA for 35fbd4a
.github/workflows/commit-lint.yml
@@ -14,6 +14,15 @@ jobs:
14
- uses: actions/checkout@v4
15
with:
16
fetch-depth: 0
17
+ - run: |
18
+ mkdir -p ${GITHUB_WORKSPACE}/.github/configs
19
+ cat <<EOF > ${GITHUB_WORKSPACE}/.github/configs/commitlint.config.js
20
+ module.exports = {
21
+ rules: {
22
+ 'body-max-line-length': [0, "always"],
23
+ },
24
+ }
25
+ EOF
26
- uses: wagoid/commitlint-github-action@v5
27
- configFile: https://raw.githubusercontent.com/projectpotos/.github/main/.github/configs/commitlint.config.js
28
+ configFile: ${GITHUB_WORKSPACE}/.github/configs/commitlint.config.js
0 commit comments