-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into alert-rules-TiKV_…
…thread_apply_worker_cpu_seconds
- Loading branch information
Showing
223 changed files
with
13,114 additions
and
667 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,19 @@ | ||
http://example.com:8033/dashboard/ | ||
https://charts.pingcap.org | ||
https://download.pingcap.org | ||
http:/192.168.0.16:2379 | ||
http:/192.168.0.15:2379 | ||
http:/192.168.0.14:2379 | ||
http://spark-master-hostname:8080/ | ||
http:/pd_ip:pd_port | ||
http:/ip:status_port/config | ||
http://grafana_ip:3000/ | ||
http://ip:2379/dashboard/ | ||
http://ip:2379/pd/api/v1/members | ||
http://\$ip:10080/ | ||
http://__tidb_ip__:10080/metrics | ||
http://__grafana_ip__:3000 | ||
http://9.9.9.9:2379/ | ||
http:/DASHBOARD_IP:PORT/dashboard | ||
http:/\$%7Btidb-server-ip%7D:\$%7Btidb-server-status-port%7D/ | ||
https://kms.us-west-2.amazonaws.com |
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,29 +1,26 @@ | ||
name: Repsitory dispatch workflow from docs-cn-release-master | ||
name: Trigger docs site update | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- release-* | ||
|
||
jobs: | ||
build: | ||
trigger: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Extract branch, repo and sha | ||
- name: Extract sha | ||
id: extract | ||
shell: bash | ||
id: extract_info | ||
run: | | ||
echo "::set-output name=branch::${GITHUB_REF#refs/heads/}" | ||
echo "::set-output name=repo::$(cut -d'/' -f2 <<< ${{ github.repository }})" | ||
echo "::set-output name=sha::$(sha=${{ github.sha }}; echo ${sha:0:6})" | ||
# - name: Repository Dispatch | ||
# uses: peter-evans/repository-dispatch@v1.1.1 | ||
# with: | ||
# token: ${{ secrets.PR_TRIGGER_BUILD_TOKEN }} | ||
# repository: pingcap/website-docs/ | ||
# event-type: ${{ steps.extract_info.outputs.repo }}/${{ steps.extract_info.outputs.branch }}-${{ steps.extract_info.outputs.sha }} | ||
# client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "repo": "${{ github.repository }}"}' | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@v1 | ||
with: | ||
token: ${{ secrets.PR_TRIGGER_BUILD_TOKEN }} | ||
repository: pingcap/website-docs | ||
event-type: ${{ github.repository }}/${{ github.ref_name }}-${{ steps.extract.outputs.sha }} | ||
client-payload: '{ "repo": "${{ github.repository }}", "ref": "${{ github.ref_name }}", "sha": "${{ github.sha }}" }' |
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
name: Links | ||
|
||
on: | ||
repository_dispatch: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * 1" | ||
|
||
jobs: | ||
linkChecker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Link Checker | ||
uses: lycheeverse/[email protected] | ||
with: | ||
# For parameter description, see https://github.com/lycheeverse/lychee#commandline-parameters | ||
args: -E --exclude-mail -v -i -n -a 429 -t 45 --exclude-file ./.github/exclude-links.txt -- **/*.md *.md | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Create Issue From File | ||
uses: peter-evans/create-issue-from-file@v3 | ||
with: | ||
title: Broken Link Detected | ||
content-filepath: ./lychee/out.md | ||
assignees: TomShawn | ||
|
||
# - name: Fail if there were link errors | ||
# run: exit ${{ steps.lychee.outputs.exit_code }} |
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.