From 665c1e7b4f923a4a414150dda141aaa620d8f886 Mon Sep 17 00:00:00 2001 From: sjonpaulbrown Date: Mon, 24 Jun 2024 15:29:44 -0600 Subject: [PATCH] Force change --- .../actions/test-monitor-process-results/action.yml | 6 ++++++ .github/workflows/flaky-test-monitor.yml | 1 + 2 files changed, 7 insertions(+) diff --git a/.github/workflows/actions/test-monitor-process-results/action.yml b/.github/workflows/actions/test-monitor-process-results/action.yml index 6a0561b9a0e..ea62e2f9c20 100644 --- a/.github/workflows/actions/test-monitor-process-results/action.yml +++ b/.github/workflows/actions/test-monitor-process-results/action.yml @@ -17,16 +17,19 @@ runs: id: commit_date run: echo "::set-output name=date::$(git show --no-patch --no-notes --pretty='%cI' $COMMIT_SHA)" shell: bash + - name: Get job run date id: job_run_date run: echo "::set-output name=date::$(TZ=":UTC" date -Iseconds)" shell: bash + - name: Process test results run: cat test-output | go run tools/test_monitor/level1/process_summary1_results.go env: JOB_STARTED: ${{ steps.job_run_date.outputs.date }} COMMIT_DATE: ${{ steps.commit_date.outputs.date }} shell: bash + - name: Google auth id: auth uses: google-github-actions/auth@v2 @@ -35,6 +38,9 @@ runs: token_format: 'access_token' workload_identity_provider: ${{ inputs.workload_identity_provider }} + - name: 'Set up Cloud SDK' + uses: 'google-github-actions/setup-gcloud@v2' + - name: Upload results to BigQuery (skipped tests) uses: nick-fields/retry@v2 with: diff --git a/.github/workflows/flaky-test-monitor.yml b/.github/workflows/flaky-test-monitor.yml index 4e2fdcbebdb..569582a70b1 100644 --- a/.github/workflows/flaky-test-monitor.yml +++ b/.github/workflows/flaky-test-monitor.yml @@ -184,3 +184,4 @@ jobs: with: service_account: ${{ secrets.FLAKY_TEST_SERVICE_ACCOUNT }} workload_identity_provider: ${{ secrets.FLAKY_TEST_WORKLOAD_IDENTITY_PROVIDER }} +