Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CICD: Update the release pipeline for recent PD format policies #1054

Merged
merged 3 commits into from
Nov 10, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
needs: release
strategy:
matrix:
branch: [master, release-4.0, release-5.0, release-5.1, release-5.2]
branch: [master, release-5.3]
steps:
- name: Check out PD code base
uses: actions/checkout@master
Expand All @@ -111,7 +111,7 @@ jobs:
git add go.mod go.sum
if git status | grep -q "Changes to be committed"
then
git commit --signoff --message "Update TiDB Dashboard to ${{ needs.release.outputs.release_version }}"
git commit --signoff --message "Update TiDB Dashboard to ${{ needs.release.outputs.release_version }}, ref #4257"
echo "::set-output name=committed::1"
else
echo "No changes detected, skipped"
Expand All @@ -129,9 +129,9 @@ jobs:
body: |
### What problem does this PR solve?

Update TiDB Dashboard to ${{ needs.release.outputs.release_version }}.
This is an automatic updating PR for TiDB Dashboard. See #4257 for details.

Upstream commit: https://github.com/${{ github.repository }}/commit/${{ github.sha }} .
This PR updates TiDB Dashboard to ${{ needs.release.outputs.release_version }} for upstream commit: https://github.com/${{ github.repository }}/commit/${{ github.sha }} .

### Release note

Expand Down