-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix/keyviz-invalid-border
- Loading branch information
Showing
102 changed files
with
3,024 additions
and
832 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 |
---|---|---|
|
@@ -12,8 +12,9 @@ jobs: | |
name: Create PD PR | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
branch: [master, release-5.3, release-5.4] | ||
branch: [master, release-5.4, release-6.1] | ||
steps: | ||
- name: Check out PD code base | ||
uses: actions/checkout@master | ||
|
@@ -22,19 +23,23 @@ jobs: | |
ref: ${{ matrix.branch }} | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.13.5" | ||
go-version: "1.18.1" | ||
- name: Update TiDB Dashboard in PD code base | ||
run: | | ||
go get -d "github.com/pingcap/tidb-dashboard@${{ github.event.inputs.release_version }}" | ||
go mod tidy | ||
cd tests/client | ||
go mod tidy | ||
cd ../.. | ||
make pd-server | ||
go mod tidy | ||
- name: Commit PD code base change | ||
id: git_commit | ||
run: | | ||
git diff | ||
git config user.name "tidb-dashboard-bot" | ||
git config user.email "[email protected]" | ||
git add go.mod go.sum | ||
git add . | ||
if git status | grep -q "Changes to be committed" | ||
then | ||
git commit --signoff --message "Update TiDB Dashboard to ${{ github.event.inputs.release_version }}, ref #4257" | ||
|
@@ -55,6 +60,8 @@ jobs: | |
body: | | ||
### What problem does this PR solve? | ||
Issue Number: ref #4257 | ||
Update TiDB Dashboard to ${{ github.event.inputs.release_version }}. | ||
Upstream commit: https://github.com/${{ github.repository }}/commit/${{ github.sha }} . | ||
|
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 |
---|---|---|
|
@@ -88,8 +88,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: release | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
branch: [master, release-5.3, release-5.4] | ||
branch: [master, release-5.4, release-6.1] | ||
steps: | ||
- name: Check out PD code base | ||
uses: actions/checkout@master | ||
|
@@ -98,19 +99,23 @@ jobs: | |
ref: ${{ matrix.branch }} | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.16.5" | ||
go-version: "1.18.1" | ||
- name: Update TiDB Dashboard in PD code base | ||
run: | | ||
go get -d "github.com/pingcap/tidb-dashboard@${{ needs.release.outputs.release_version }}" | ||
go mod tidy | ||
cd tests/client | ||
go mod tidy | ||
cd ../.. | ||
make pd-server | ||
go mod tidy | ||
- name: Commit PD code base change | ||
id: git_commit | ||
run: | | ||
git diff | ||
git config user.name "tidb-dashboard-bot" | ||
git config user.email "[email protected]" | ||
git add go.mod go.sum | ||
git add . | ||
if git status | grep -q "Changes to be committed" | ||
then | ||
git commit --signoff --message "Update TiDB Dashboard to ${{ needs.release.outputs.release_version }}, ref #4257" | ||
|
@@ -131,6 +136,8 @@ jobs: | |
body: | | ||
### What problem does this PR solve? | ||
Issue Number: ref #4257 | ||
This is an automatic updating PR for TiDB Dashboard. See #4257 for details. | ||
This PR updates TiDB Dashboard to ${{ needs.release.outputs.release_version }} for upstream commit: https://github.com/${{ github.repository }}/commit/${{ github.sha }} . | ||
|
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
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
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
File renamed without changes.
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.