[Enhancement] Add histogram metric and node info metric in json metric (backport #53735) #26271
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
name: SYNC PIPELINE | |
on: | |
pull_request_target: | |
branches: | |
- main | |
- 'branch-[0-9].[0-9]*' | |
types: | |
- closed | |
workflow_dispatch: | |
jobs: | |
sync: | |
runs-on: [self-hosted, quick] | |
if: github.event.pull_request.merged == true && github.repository == 'StarRocks/starrocks' | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
GH_TOKEN: ${{ secrets.PAT }} | |
steps: | |
- name: commit_sha | |
id: commit_sha | |
run: | | |
set -x | |
commit_sha=`curl -L \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/${{ github.repository }}/pulls/${PR_NUMBER} 2>/dev/null \ | |
| jq .merge_commit_sha` | |
commit_sha=$(echo ${commit_sha//\"}) | |
echo "commit_sha=${commit_sha:0:7}" >> $GITHUB_OUTPUT | |
- name: sync | |
env: | |
PR_ID: ${{ github.event.number }} | |
COMMIT_ID: ${{ steps.commit_sha.outputs.commit_sha }} | |
BRANCH: ${{ github.base_ref }} | |
run: | | |
rm -rf ./ci-tool && cp -rf /var/lib/ci-tool ./ci-tool && cd ci-tool && git pull >/dev/null | |
./scripts/run-repo-sync.sh |