Skip to content

Commit 7ead458

Browse files
authored
chore: Add spell check workflow (#700)
1 parent 38dec3b commit 7ead458

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: spell-check-lint
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, edited]
5+
branches:
6+
- main
7+
jobs:
8+
spellcheck-request-title:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout spellchecker
12+
uses: actions/checkout@v2
13+
with:
14+
ref: refs/heads/main
15+
repository: box/box-sdk-spellchecker
16+
token: ${{ secrets.DISPATCH_ACCESS_TOKEN }}
17+
- name: Execute spellchecker
18+
uses: ./

0 commit comments

Comments
 (0)