generated from wayofdev/php-package-tpl
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #524 from wayofdev/feat/tpl-updates
feat: markdown-lint action and Makefile command
- Loading branch information
Showing
8 changed files
with
105 additions
and
34 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 |
---|---|---|
|
@@ -60,7 +60,7 @@ representative at an online or offline event. | |
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported to the community leaders responsible for enforcement at | ||
[email protected]. | ||
<[email protected]>. | ||
All complaints will be reviewed and investigated promptly and fairly. | ||
|
||
All community leaders are obligated to respect the privacy and security of the | ||
|
@@ -116,13 +116,13 @@ the community. | |
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], | ||
version 2.0, available at | ||
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. | ||
<https://www.contributor-covenant.org/version/2/0/code_of_conduct.html>. | ||
|
||
Community Impact Guidelines were inspired by [Mozilla's code of conduct | ||
enforcement ladder](https://github.com/mozilla/diversity). | ||
|
||
[homepage]: https://www.contributor-covenant.org | ||
|
||
For answers to common questions about this code of conduct, see the FAQ at | ||
https://www.contributor-covenant.org/faq. Translations are available at | ||
https://www.contributor-covenant.org/translations. | ||
<https://www.contributor-covenant.org/faq>. Translations are available at | ||
<https://www.contributor-covenant.org/translations>. |
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
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 |
---|---|---|
|
@@ -21,7 +21,6 @@ jobs: | |
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
# See: https://github.com/wagoid/commitlint-github-action | ||
- name: 🧐 Lint commits using "commitlint" | ||
uses: wagoid/[email protected] | ||
with: | ||
|
@@ -30,6 +29,23 @@ jobs: | |
failOnErrors: false | ||
helpURL: 'https://github.com/conventional-changelog/commitlint/#what-is-commitlint' | ||
|
||
markdown-linting: | ||
timeout-minutes: 4 | ||
runs-on: ubuntu-latest | ||
concurrency: | ||
cancel-in-progress: true | ||
group: markdown-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
steps: | ||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
- name: 🧐 Lint Markdown files | ||
uses: DavidAnson/[email protected] | ||
with: | ||
globs: | | ||
**/*.md | ||
!CHANGELOG.md | ||
code-coverage: | ||
timeout-minutes: 4 | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -45,7 +61,6 @@ jobs: | |
- '8.2' | ||
dependencies: | ||
- locked | ||
|
||
steps: | ||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
@@ -106,7 +121,6 @@ jobs: | |
- '8.2' | ||
dependencies: | ||
- locked | ||
|
||
steps: | ||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
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 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.34.0/schema/markdownlint-config-schema.json", | ||
"line-length": false, | ||
"no-inline-html": false, | ||
"first-line-h1": false, | ||
"no-duplicate-heading": false | ||
} |
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.