Skip to content

Commit fe7b7fd

Browse files
committed
Schedule spell checking
1 parent 49d4801 commit fe7b7fd

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.github/workflows/spelling.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Spell checking
2+
on:
3+
schedule:
4+
# * is a special character in YAML so you have to quote this string
5+
- cron: '15 * * * *'
6+
push:
7+
branches:
8+
- schedule
9+
10+
jobs:
11+
build:
12+
name: Spell checking
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2.0.0
16+
with:
17+
fetch-depth: 0
18+
- uses: check-spelling/check-spelling@0.0.4-alpha
19+
env:
20+
bucket: ssh://git@github.com/check-spelling/examples-testing.git
21+
project: spelling-data-schedule
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
DEBUG: 1

LICENSE.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<p xmlns:dct="http://purl.org/dc/terms/" xmlns:vcard="http://www.w3.org/2001/vcard-rdf/3.0#">
2+
<a rel="license"
3+
href="http://creativecommons.org/publicdomain/zero/1.0/">
4+
<img src="http://i.creativecommons.org/p/zero/1.0/88x31.png" style="border-style: none;" alt="CC0" />
5+
</a>
6+
<br />
7+
To the extent possible under law,
8+
<span resource="[_:publisher]" rel="dct:publisher">
9+
<span property="dct:title">Josh Soref</span></span>
10+
has waived all copyright and related or neighboring rights to
11+
<span property="dct:title">Sample repositories</span>.
12+
This work is published from:
13+
<span property="vcard:Country" datatype="dct:ISO3166"
14+
content="CA" about="[_:publisher]">
15+
Canada</span>.
16+
</p>

0 commit comments

Comments
 (0)