Skip to content

Commit 4f6d7d1

Browse files
authored
Disable qa engine check (#22131)
1 parent 0c5fbd1 commit 4f6d7d1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test-command.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ jobs:
156156
retention-days: 3
157157
- name: Run QA checks for ${{ github.event.inputs.connector }}
158158
id: qa_checks
159-
if: always()
159+
# TODO: Disabled for on master until #22127 resolved
160+
if: contains(github.ref, "feat-qa-engine")
160161
run: |
161162
run-qa-checks ${{ github.event.inputs.connector }}
162163
- name: Report Status

tools/status/report.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function write_job_log() {
5656
# if docker version has a value, write it to a file with the docker version as the name
5757
# else output an error to the build log
5858
if [ -n "$DOCKER_VERSION" ]; then
59-
echo "$job_log_json" > tests/history/"$CONNECTOR"/"$DOCKER_VERSION".json
59+
echo "$job_log_json" > tests/history/"$CONNECTOR"/"$VERSION_PREFIX""$DOCKER_VERSION".json
6060
else
6161
echo "ERROR: Could not find docker version for $CONNECTOR"
6262
fi

0 commit comments

Comments
 (0)