Skip to content

Commit

Permalink
Merge branch 'ipfs:main' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
pawal authored Nov 25, 2024
2 parents 4c68757 + d2c2479 commit db21b3e
Show file tree
Hide file tree
Showing 94 changed files with 7,849 additions and 1,456 deletions.
9 changes: 9 additions & 0 deletions .config.json
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"
}
}
15 changes: 15 additions & 0 deletions .github/CODEOWNERS
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
29 changes: 29 additions & 0 deletions .github/workflows/linter.yml
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 }}
13 changes: 13 additions & 0 deletions .github/workflows/stale.yml
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
out/
super-linter.log
12 changes: 12 additions & 0 deletions .markdownlint.json
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
}
169 changes: 0 additions & 169 deletions API_CLI.md

This file was deleted.

124 changes: 0 additions & 124 deletions API_CORE.md

This file was deleted.

Loading

0 comments on commit db21b3e

Please sign in to comment.