Skip to content

Commit

Permalink
Disable qa engine check (#22131)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnchrch committed Jan 31, 2023
1 parent 0c5fbd1 commit 4f6d7d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ jobs:
retention-days: 3
- name: Run QA checks for ${{ github.event.inputs.connector }}
id: qa_checks
if: always()
# TODO: Disabled for on master until #22127 resolved
if: contains(github.ref, "feat-qa-engine")
run: |
run-qa-checks ${{ github.event.inputs.connector }}
- name: Report Status
Expand Down
2 changes: 1 addition & 1 deletion tools/status/report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function write_job_log() {
# if docker version has a value, write it to a file with the docker version as the name
# else output an error to the build log
if [ -n "$DOCKER_VERSION" ]; then
echo "$job_log_json" > tests/history/"$CONNECTOR"/"$DOCKER_VERSION".json
echo "$job_log_json" > tests/history/"$CONNECTOR"/"$VERSION_PREFIX""$DOCKER_VERSION".json
else
echo "ERROR: Could not find docker version for $CONNECTOR"
fi
Expand Down

0 comments on commit 4f6d7d1

Please sign in to comment.