Skip to content

Commit e02b572

Browse files
authored
Remove misspell workflow (#15353)
1 parent a54ba95 commit e02b572

File tree

5 files changed

+5
-45
lines changed

5 files changed

+5
-45
lines changed

.github/workflows/build-daily-no-build-cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
# muzzle is not included here because it doesn't use gradle cache anyway and so is already covered
3030
# by the normal daily build
3131

32-
# link-check and misspell-check are not included here because they don't use gradle cache
33-
# anyway and so are already covered by the normal daily build
32+
# link-check is not included here because it doesn't use gradle cache anyway and so is already
33+
# covered by the normal daily build
3434

3535
workflow-notification:
3636
permissions:

.github/workflows/build-daily.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ jobs:
3434
markdown-lint-check:
3535
uses: ./.github/workflows/reusable-markdown-lint-check.yml
3636

37-
misspell-check:
38-
uses: ./.github/workflows/reusable-misspell-check.yml
39-
4037
workflow-notification:
4138
permissions:
4239
contents: read
@@ -46,7 +43,6 @@ jobs:
4643
- test-latest-deps
4744
- muzzle
4845
- link-check
49-
- misspell-check
5046
if: always()
5147
uses: ./.github/workflows/reusable-workflow-notification.yml
5248
with:
@@ -55,6 +51,5 @@ jobs:
5551
needs.common.result == 'success' &&
5652
needs.test-latest-deps.result == 'success' &&
5753
needs.muzzle.result == 'success' &&
58-
needs.link-check.result == 'success' &&
59-
needs.misspell-check.result == 'success'
54+
needs.link-check.result == 'success'
6055
}}

.github/workflows/build-pull-request.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ jobs:
5353
markdown-lint-check:
5454
uses: ./.github/workflows/reusable-markdown-lint-check.yml
5555

56-
misspell-check:
57-
uses: ./.github/workflows/reusable-misspell-check.yml
58-
5956
required-status-check:
6057
# test-latest-deps is not included in the required status checks
6158
# because any time a new library version is released to maven central
@@ -71,7 +68,6 @@ jobs:
7168
- muzzle
7269
- shell-script-check
7370
- markdown-lint-check
74-
- misspell-check
7571
runs-on: ubuntu-latest
7672
if: always()
7773
steps:
@@ -82,8 +78,7 @@ jobs:
8278
(
8379
needs.muzzle.result != 'success' ||
8480
needs.shell-script-check.result != 'success' ||
85-
needs.markdown-lint-check.result != 'success' ||
86-
needs.misspell-check.result != 'success'
81+
needs.markdown-lint-check.result != 'success'
8782
)
8883
)
8984
run: exit 1 # fail

.github/workflows/build.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,9 @@ jobs:
5151
if: "!startsWith(github.ref_name, 'release/')"
5252
uses: ./.github/workflows/reusable-markdown-lint-check.yml
5353

54-
misspell-check:
55-
# release branches are excluded to avoid unnecessary maintenance if new misspellings are added
56-
# to the misspell dictionary
57-
if: "!startsWith(github.ref_name, 'release/')"
58-
uses: ./.github/workflows/reusable-misspell-check.yml
59-
6054
publish-snapshots:
6155
needs:
62-
# intentionally not blocking snapshot publishing on test-latest-deps, muzzle,
63-
# link-check, or misspell-check
56+
# intentionally not blocking snapshot publishing on test-latest-deps, muzzle, or link-check
6457
- common
6558
runs-on: ubuntu-latest
6659
# skipping release branches because the versions in those branches are not snapshots

.github/workflows/reusable-misspell-check.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)