diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index a01848c703d..4df6788fa69 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -28,5 +28,5 @@ Components that this PR will affect: - [ ] Query Serving - [ ] VReplication - [ ] Cluster Management -- [ ] Build +- [ ] Build/CI - [ ] VTAdmin diff --git a/.github/workflows/check_runs_analysis.yaml b/.github/workflows/check_runs_analysis.yaml index 48b5a8ba1ad..7e65154605a 100644 --- a/.github/workflows/check_runs_analysis.yaml +++ b/.github/workflows/check_runs_analysis.yaml @@ -46,6 +46,8 @@ jobs: \"content\": \"$(cat $tmpfile)\" } " + json_tmpfile="$(mktemp)" + echo "$json" > $json_tmpfile curl \ -X PUT \ @@ -53,4 +55,4 @@ jobs: -H "Accept: application/vnd.github.v3+json" \ -H "Content-type: application/json" \ "https://api.github.com/repos/${GITHUB_REPOSITORY}/contents/${WORKFLOW_FAILURES_FILE}" \ - -d "$json" + -d "@${json_tmpfile}"