Skip to content

Commit

Permalink
Merge pull request #53 from yarikoptic/enh-codespell
Browse files Browse the repository at this point in the history
codespell: action (to prevent typos in the future), config and some typos fixed
  • Loading branch information
achilleas-k authored Jan 31, 2024
2 parents 5b8be0f + d4d5f9f commit 00d15ca
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[codespell]
skip = .git,*.pdf,*.svg,*.min.*
#
# ignore-words-list =
22 changes: 22 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Codespell

on:
push:
branches: [master]
pull_request:
branches: [master]

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Codespell
uses: codespell-project/actions-codespell@v2
2 changes: 1 addition & 1 deletion docs/addmodule.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Create a file called `labproject.json` (later called via `/path/to/labproject.js
"web": "<web address for GIN service: required>",
"git": "<git address for GIN service: required>",
"username": "<bot user username: required>",
"password": "<bot user pasword: required>"
"password": "<bot user password: required>"
},
"templaterepo": "<template repository: required>",
"cookiename": "<session cookie name: optional (default: utonic-labproject)>",
Expand Down
2 changes: 1 addition & 1 deletion docs/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ It defines the following service components:

The Form consists of two pages. The first page contains 3 elements:
1. Name: a simple text field.
2. Descritpion: a long form text area.
2. Description: a long form text area.
3. Duration: the duration in seconds that the action will run for.

A second page includes one of each type of input supported for demonstration purposes.
Expand Down
2 changes: 1 addition & 1 deletion docs/labproject.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Create a file called `labproject.json` (later called via `/path/to/labproject.js
"web": "<web address for GIN service: required>",
"git": "<git address for GIN service: required>",
"username": "<bot user username: required>",
"password": "<bot user pasword: required>"
"password": "<bot user password: required>"
},
"templaterepo": "<template repository: required>",
"cookiename": "<session cookie name: optional (default: utonic-labproject)>",
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The following configuration keys are supported:
"web": "<web address for GIN service: required>",
"git": "<git address for GIN service: required>",
"username": "<service username: required>",
"password": "<service pasword: required>"
"password": "<service password: required>"
},
"templaterepo": "<template repository: required>",
"cookiename": "<session cookie name: optional (default: utonic-labproject)>",
Expand Down

0 comments on commit 00d15ca

Please sign in to comment.