-
Notifications
You must be signed in to change notification settings - Fork 605
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into release/gateway-3.8.1.0
- Loading branch information
Showing
311 changed files
with
14,847 additions
and
1,707 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
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,16 @@ | ||
name: Dispatch docs update | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
dispatch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.PAT }} | ||
repository: Kong/docs.konghq.com-jp | ||
event-type: DOCS_UPDATED |
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
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,49 @@ | ||
name: Upload Docs for translation | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
product: | ||
type: string | ||
description: | | ||
Kong product to translate. | ||
If specified, only files related to that speciific product will be translated. | ||
Otherwise, the config file in tools/smartling-integration/config.yml will be used. | ||
versions: | ||
type: string | ||
description: | | ||
This param only makes sense if the `product` is provided. | ||
Comma-separated list of versions for a specific product to translate. | ||
If not provided, the config file in tools/smartling-integration/config.yml will be used. | ||
locale: | ||
type: string | ||
default: 'ja-JP' | ||
description: "Target locale, it must match the same format that the Job has, e.g. `ja-JP`." | ||
jobId: | ||
type: string | ||
description: "Smarting's JobUId in case we want to re-upload some files to an existing Job" | ||
|
||
jobs: | ||
upload-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
- name: Install dependencies | ||
run: | | ||
cd tools/smartling-integration | ||
npm ci | ||
- name: Run upload tool | ||
run: | | ||
node tools/smartling-integration/upload_docs.js | ||
env: | ||
PROJECT_ID: ${{ secrets.SMARTLING_PROJECT_ID }} | ||
USER_IDENTIFIER: ${{ secrets.SMARTLING_USER_IDENTIFIER }} | ||
USER_SECRET: ${{ secrets.SMARTLING_USER_SECRET }} | ||
JOB_ID: ${{ github.event.inputs.jobId }} | ||
LOCALE: ${{ github.event.inputs.locale }} | ||
PRODUCT: ${{ github.event.inputs.product }} | ||
VERSIONS: ${{ github.event.inputs.versions }} |
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,41 @@ | ||
name: Upload Plugins for translation | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
versions: | ||
type: string | ||
description: | | ||
Comma-separated list of gateway versions to translate. | ||
If not provided, the config file in tools/smartling-integration/config.yml will be used. | ||
locale: | ||
type: string | ||
default: 'ja-JP' | ||
description: "Target locale, it must match the same format that the Job has, e.g. `ja-JP`." | ||
jobId: | ||
type: string | ||
description: "Smarting's JobUId in case we want to re-upload some files to an existing Job" | ||
|
||
jobs: | ||
upload-plugins: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
- name: Install dependencies | ||
run: | | ||
cd tools/smartling-integration | ||
npm ci | ||
- name: Run upload tool | ||
run: | | ||
node tools/smartling-integration/upload_plugins.js | ||
env: | ||
PROJECT_ID: ${{ secrets.SMARTLING_PROJECT_ID }} | ||
USER_IDENTIFIER: ${{ secrets.SMARTLING_USER_IDENTIFIER }} | ||
USER_SECRET: ${{ secrets.SMARTLING_USER_SECRET }} | ||
JOB_ID: ${{ github.event.inputs.jobId }} | ||
LOCALE: ${{ github.event.inputs.locale }} | ||
VERSIONS: ${{ github.event.inputs.versions }} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
20 | ||
22 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
3.3.5 | ||
3.3.6 |
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
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
vite: bin/vite dev | ||
jekyll: bin/jekyll-vite wait && bundle exec jekyll serve --livereload --config jekyll-dev.yml --profile | ||
jekyll: bin/jekyll-vite wait && bundle exec jekyll serve --livereload --config jekyll-dev.yml${JEKYLL_CONFIG_FILES:+,$JEKYLL_CONFIG_FILES} --profile |
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
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
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
Oops, something went wrong.