forked from ipfs/specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ipfs:main' into master
- Loading branch information
Showing
94 changed files
with
7,849 additions
and
1,456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"input": "src", | ||
"output": "out", | ||
"template": "template.html", | ||
"baseURL": "https://specs.ipfs.tech", | ||
"github": { | ||
"repository": "ipfs/specs" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This is a CODEOWNERS file | ||
# Each line is a file pattern followed by one or more owners. | ||
# Order is important; the last matching pattern takes the most precedence. | ||
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners | ||
|
||
# global IPIP | ||
IPIP/ @ipfs/specs-stewards | ||
src/ipips/ @ipfs/specs-stewards | ||
|
||
# Selected Spec Stewards can be defined below to be automatically requested for | ||
# review when someone opens a pull request that modifies area of their | ||
# interest. | ||
|
||
http-gateways/ @lidel | ||
src/http-gateways/ @lidel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: lint | ||
on: | ||
workflow_dispatch: | ||
push: | ||
|
||
jobs: | ||
#markdownlint: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - uses: xt0rted/markdownlint-problem-matcher@b643b0751c371f357690337d4549221347c0e1bc # v1.0 | ||
# - run: npx markdownlint **/*.md --ignore node_modules | ||
super-linter: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
with: | ||
# Full git history is needed to get a proper list of changed files within `super-linter` | ||
fetch-depth: 0 | ||
- name: Lint | ||
uses: super-linter/super-linter/slim@v7 | ||
env: | ||
LINTER_RULES_PATH: '.' | ||
MARKDOWN_CONFIG_FILE: .markdownlint.json | ||
VALIDATE_ALL_CODEBASE: false | ||
VALIDATE_MARKDOWN: true | ||
DEFAULT_BRANCH: main | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Close and mark stale issue | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
stale: | ||
uses: pl-strflt/.github/.github/workflows/reusable-stale-issue.yml@v0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
out/ | ||
super-linter.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"single-h1": false, | ||
"ul-style": false, | ||
"no-bare-urls": false, | ||
"no-duplicate-heading": false, | ||
"no-emphasis-as-header": false, | ||
"fenced-code-language": false, | ||
"blanks-around-lists": false, | ||
"single-trailing-newline": false, | ||
"link-fragments": false, | ||
"line-length": false | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.