From c958a013daf98221d907aa8bcc3ab302aae7e71a Mon Sep 17 00:00:00 2001 From: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com> Date: Tue, 28 Nov 2023 14:25:39 +0000 Subject: [PATCH] Add revision parameter to action --- .github/workflows/cloud_tests_full.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/cloud_tests_full.yml b/.github/workflows/cloud_tests_full.yml index 216ec955c..0396119f6 100644 --- a/.github/workflows/cloud_tests_full.yml +++ b/.github/workflows/cloud_tests_full.yml @@ -25,6 +25,7 @@ jobs: steps: - uses: seqeralabs/action-tower-launch@v2 with: + revision: ${{ github.sha }} workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} compute_env: ${{ secrets.TOWER_CE_AWS_CPU }} @@ -41,6 +42,7 @@ jobs: with: name: Tower debug log file path: tower_action_*.log + run-full-tests-on-gcp: if: ${{ github.event.inputs.platform == 'all' || github.event.inputs.platform == 'gcp' || !github.event.inputs }} runs-on: ubuntu-latest @@ -50,6 +52,7 @@ jobs: steps: - uses: seqeralabs/action-tower-launch@v2 with: + revision: ${{ github.sha }} workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} compute_env: ${{ secrets.TOWER_CE_GCP_CPU }} @@ -66,6 +69,7 @@ jobs: with: name: Tower debug log file path: tower_action_*.log + run-full-tests-on-azure: if: ${{ github.event.inputs.platform == 'all' || github.event.inputs.platform == 'azure' || !github.event.inputs }} runs-on: ubuntu-latest @@ -75,6 +79,7 @@ jobs: steps: - uses: seqeralabs/action-tower-launch@v2 with: + revision: ${{ github.sha }} workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} compute_env: ${{ secrets.TOWER_CE_AZURE_CPU }}