Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
44d8edea
Unverified
Commit
44d8edea
authored
Dec 07, 2021
by
Josh Soref
Committed by
GitHub
Dec 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(spelling): automatically accept aliased commands (#10475)
Co-authored-by:
Josh Soref
<
jsoref@users.noreply.github.com
>
parent
29b344a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
expect.txt
.github/actions/spelling/expect.txt
+3
-0
spelling.yml
.github/workflows/spelling.yml
+8
-0
No files found.
.github/actions/spelling/expect.txt
View file @
44d8edea
...
@@ -22,6 +22,7 @@ acr
...
@@ -22,6 +22,7 @@ acr
acroread
acroread
acs
acs
acsc
acsc
acss
acsp
acsp
actionformats
actionformats
Adamantium
Adamantium
...
@@ -1459,6 +1460,7 @@ gpr
...
@@ -1459,6 +1460,7 @@ gpr
gpristine
gpristine
gpsup
gpsup
gpu
gpu
gpus
gpv
gpv
gradle
gradle
gradlew
gradlew
...
@@ -2396,6 +2398,7 @@ mirrorlist
...
@@ -2396,6 +2398,7 @@ mirrorlist
mixin
mixin
mkcd
mkcd
mkdir
mkdir
mkdirs
mktag
mktag
mktemp
mktemp
mktree
mktree
...
...
.github/workflows/spelling.yml
View file @
44d8edea
...
@@ -30,6 +30,14 @@ jobs:
...
@@ -30,6 +30,14 @@ jobs:
-
name
:
checkout
-
name
:
checkout
if
:
github.event_name == 'push'
if
:
github.event_name == 'push'
uses
:
actions/checkout@v2
uses
:
actions/checkout@v2
-
name
:
find aliases
run
:
|
for a in $(git ls-files|grep '\.zsh$'); do
echo "-- $a"
if [ -s "$a" ]; then
perl -ne 'next unless s/^alias ([A-Za-z]{3,})=.*/$1/;print' "$a" | tee -a .github/actions/spelling/allow.txt
fi
done;
-
name
:
check-spelling
-
name
:
check-spelling
id
:
spelling
id
:
spelling
uses
:
check-spelling/check-spelling@prerelease
uses
:
check-spelling/check-spelling@prerelease
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment