Skip to content

Commit 2fa97a2

Browse files
committed
Merge branch 'main' into update-webpack-dep
2 parents 53b7208 + 35aad15 commit 2fa97a2

2,538 files changed

Lines changed: 59748 additions & 3472 deletions

File tree

Some content is hidden

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

.github/workflows/repo-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
script: |
4343
const { owner, repo } = context.repo
4444
45-
const pr = await github.pulls.get({
45+
const { data: pr } = await github.pulls.get({
4646
owner,
4747
repo,
4848
pull_number: parseInt(${{ steps.find-pull-request.outputs.number }})

.github/workflows/sync-single-english-algolia-index.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,6 @@ jobs:
4747
ALGOLIA_APPLICATION_ID: ${{ secrets.ALGOLIA_APPLICATION_ID }}
4848
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }}
4949
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50-
run: npm run sync-search
50+
run: |
51+
npm run build
52+
npm run sync-search

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Before you begin:
99

1010
### Use the 'make a contribution' button
1111

12-
![](./assets/images/make-contribution.gif)
12+
<img src="./assets/images/contribution_cta.png" width="400">
1313

1414
Navigating a new codebase can be challenging, so we're making that a little easier. As you're using docs.github.com, you may come across an article that you want to make an update to. You can click on the **make a contribution** button right on that article, which will take you to the file in this repo where you'll make your changes.
1515

Dockerfile.openapi_decorator

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM node:14-alpine
2+
3+
RUN apk add --no-cache git python make g++
4+
5+
WORKDIR /openapi-check
6+
7+
RUN chown node:node /openapi-check -R
8+
9+
USER node
10+
11+
COPY --chown=node:node package.json /openapi-check
12+
COPY --chown=node:node package-lock.json /openapi-check
13+
ADD --chown=node:node script /openapi-check/script
14+
ADD --chown=node:node lib /openapi-check/lib
15+
ADD --chown=node:node content /openapi-check/content
16+
17+
RUN npm ci -D
18+
19+
ENTRYPOINT ["node", "/openapi-check/script/rest/openapi-check.js"]
38.4 KB
Loading
11.8 KB
Loading
19.5 KB
Loading
21.3 KB
Loading
43.1 KB
Loading
38.2 KB
Loading

0 commit comments

Comments
 (0)