forked from cloudnative-pg/charts
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add GitHub Actions Workflow to check for typos (#40)
Signed-off-by: Philippe Noël <[email protected]> Co-authored-by: Philippe Noël <[email protected]>
- Loading branch information
1 parent
7bf5248
commit d591d8b
Showing
5 changed files
with
35 additions
and
3 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 @@ | ||
socio-economic |
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,31 @@ | ||
# workflows/check-typo.yml | ||
# | ||
# Check Typo | ||
# Check Typo using codespell. | ||
|
||
name: Check Typo | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: check-typo-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
check-typo: | ||
name: Check Typo using codespell | ||
runs-on: depot-ubuntu-latest-2 | ||
if: github.event.pull_request.draft == false | ||
|
||
steps: | ||
- name: Checkout Git Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check Typo using codespell | ||
uses: codespell-project/actions-codespell@v2 | ||
with: | ||
check_filenames: true | ||
ignore_words_file: .codespellignore |
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ or via [email]([email protected]). | |
|
||
The majority of the development for ParadeDB happens in the [paradedb/paradedb](https://github.com/paradedb/paradedb) monorepo. Pleaser refer to this repository for general development. To develop for this repository, please follow the instructions below. | ||
|
||
## Pull Request Worfklow | ||
## Pull Request Workflow | ||
|
||
All changes to ParadeDB happen through GitHub Pull Requests. Here is the recommended | ||
flow for making a change: | ||
|
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