Skip to content

Commit f149374

Browse files
committed
merge master [netlify-ignore]
2 parents cab866c + 68a62cf commit f149374

File tree

1,558 files changed

+87652
-29394
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,558 files changed

+87652
-29394
lines changed

.buildkite/pipeline.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.env.example

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
PLATFORM_API_TOKEN=look for me in chamber
1+
PLATFORM_API_TOKEN=look for me in chamber
2+
PAPI_TOKEN=get one from a papi-enabled workspace

.github/workflows/link-check.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: Link Check
4+
5+
# Controls when the action will run.
6+
on:
7+
# Triggers the workflow on push or pull request events but only for the master branch
8+
pull_request:
9+
10+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
11+
jobs:
12+
markdown-link-check:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@master
16+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
17+
with:
18+
use-quiet-mode: 'yes'
19+
config-file: '.mlc-config.json'
20+
use-verbose-mode: 'yes'
21+
check-modified-files-only: 'yes'

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ node_modules/
1111
src/assets/docs.bundle.js
1212
yarn-error.log
1313
# Make sure to update `analytics` to the full path to your Typewriter client.
14+
.vscode/spellright.dict
15+
16+
# Local Netlify folder
17+
.netlify

.mlc-config.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"replacementPatterns": [
3+
{
4+
"pattern": "^/docs",
5+
"replacement": "/github/workspace/src"
6+
},
7+
{
8+
"pattern": "(\\S+?)\/(\\S+?)\/?$",
9+
"replacement": "$1/$2.md"
10+
}
11+
]
12+
}

.vale.ini

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
StylesPath = vale-styles
2+
3+
Vocab = Docs
4+
5+
[*.md]
6+
BasedOnStyles = write-good, segment
7+
TokenIgnores = ({% .* %})

.vscode/launch.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": []
7+
}

CODEOWNERS

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# The default owners for everything in
22
# the repo. Unless a later match takes precedence.
3-
CODEOWNERS @sanscontext @markzegarelli @nielst @XavierAgostini @danielstjules @stephment
3+
CODEOWNERS @segmentio/segment-doc-team @sanscontext @markzegarelli
44

55
# Diagram library
6-
/diagram-library @sanscontext
6+
/diagram-library @sanscontext @markzegarelli
77

88
# Utility scripts
9-
/scripts @sanscontext @bryanmikaelian @XavierAgostini
9+
/scripts @segmentio/segment-doc-team
10+
11+
# Vale Linting
12+
/vale-styles @segmentio/segment-doc-team
13+
.vale.ini @segmentio/segment-doc-team
1014

1115

1216
# Content owners should be in the order of PM, TL (team-lead), and EM (in a crisis) for a given team.
@@ -18,18 +22,18 @@ CODEOWNERS @sanscontext @markzegarelli @nielst @XavierAgostini @danielstjules @
1822

1923

2024
# Libraries owners
21-
/src/connections/catalog/libraries @osamakhn @bsneed @lubird @pooyaj @juliofarah
25+
/src/connections/catalog/libraries @osamakhn @bsneed @pooyaj @juliofarah
2226

23-
# Destination owners
24-
/src/connections/destinations @n2parko @danielstjules @benhorowitz
27+
# Destinations owners
28+
/src/connections/destinations @segmentio/segment-doc-team
2529

2630

27-
# Privacy owners
28-
/src/privacy @notfelineit
31+
# Privacy owners TODO
32+
# /src/privacy
2933

3034

31-
# Protocols owners
32-
/src/protocols @francisco @rarchana2001asu
35+
# Protocols owners TODO
36+
# /src/protocols
3337

3438
# Partner Program owners
3539
/src/partners @misteryeo @n2parko @benhorowitz

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ group :jekyll_plugins do
1717
gem 'jekyll-redirect-from'
1818
gem "premonition", "~> 2.0.0"
1919
gem "jekyll-include-cache"
20+
gem 'jekyll-algolia'
21+
gem 'jekyll-dotenv'
2022
end
2123

2224
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem

0 commit comments

Comments
 (0)