Skip to content

Commit

Permalink
Empty
Browse files Browse the repository at this point in the history
  • Loading branch information
expede committed Oct 16, 2023
0 parents commit ac87313
Show file tree
Hide file tree
Showing 7 changed files with 173 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @expede @gozala
16 changes: 16 additions & 0 deletions .github/workflows/dot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
pull_request:
paths:
- "**.dot"

jobs:
digraph_to_svg_job:
runs-on: ubuntu-latest
name: Create svg image from digraph .dot file
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Digraph to SVG step
id: digraph_to_svg
uses: alexrothenberg/digraph-to-svg-action@master
10 changes: 10 additions & 0 deletions .github/workflows/linkcheck.cfg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"ignorePatterns": [
{
"pattern": "https://share.ansi.org/Shared%20Documents/Standards%20Activities/American%20National%20Standards/Procedures,%20Guides,%20and%20Forms/2020_ANSI_Essential_Requirements.pdf"
},
{
"pattern": "https://share.ansi.org/Shared%20Documents/Standards%20Activities/American%20National%20Standards/Procedures,%20Guides,%20and%20Forms/2020_ANSI_Essential_Requirements.pdf"
}
]
}
22 changes: 22 additions & 0 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check Markdown links

on:
push:
branches:
- main
pull_request:

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: "yes"
check-modified-files-only: "yes"
base-branch: "main"
config-file: "./.github/workflows/linkcheck.cfg.json"
- uses: DavidAnson/markdownlint-cli2-action@v9
with:
globs: "README.md"
17 changes: 17 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "spellcheck"
on:
push:
branches:
- main
pull_request:

jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: matheus23/[email protected]
with:
files-to-check: "README.md"
files-to-exclude: "LICENSE.md" # optional
words-to-ignore-file: ".github/workflows/words-to-ignore.txt"
103 changes: 103 additions & 0 deletions .github/workflows/words-to-ignore.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
Acknowledgements
Agoric
Akiko
Akiko's
BCP
Bacalhau
CBOR
CIDs
Cap'N
Cap'n
CapTP
DAG-CBOR
DAG-JSON
E-lang
ERTP
Enum
Gozalishvili
Hardt
Holmgren
IPLD
IPVM
Invoker's
Invokers
Irakli
JSON
JSONPath
JWT
JWT-encoded
Krüger
Lakhani
Lemmer-Webber
Marsen
OAuth
OCapN
Philipp
Pre-Draft
Proto
RPC
SemVer
Spritely
TTL
UCAN
UCAN's
UCAN-IPLD
UCANTO
UCANs
URI
URIs
Vagg
Varsig
Wasm
WebAssembly
Worthington
Zeeshan
Zelenka
arg
atomicity
auth
backend
base64url
canonicalized
cryptographic
cryptographically
dataflow
de
delegator
dholms
enqueuing
expede
facto
implicits
interpretable
invariants
invoker
js-num
memoization
multiformat
outmost
parallelize
parameterizing
pipelined
pipelining
pre-vacation
proxied
rc
referentially
representable
requestor's
responder
signalling
significand
simple-but-evolvable
struct
subdelegated
subdelegation
subtype
trustless
ucanto
unlabelled
unpadded
url
v0
validator
Empty file added README.md
Empty file.

0 comments on commit ac87313

Please sign in to comment.