From bdaa9741a0621079c34675002fb5bb7488f43e4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20Wytr=C4=99bowicz?= Date: Tue, 6 Feb 2024 23:13:23 +0100 Subject: [PATCH] Rename `add/qit-workflows-test-build` to `actions-v1` branch As it was missing post-review step from https://github.com/woocommerce/grow/pull/81 --- .github/workflows/run-qit-all.yml | 2 +- .../actions/run-qit-extension/action.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-qit-all.yml b/.github/workflows/run-qit-all.yml index 88f4724c..80f37b5d 100644 --- a/.github/workflows/run-qit-all.yml +++ b/.github/workflows/run-qit-all.yml @@ -69,7 +69,7 @@ jobs: extension: [automatewoo, automatewoo-birthdays, automatewoo-referrals, google-listings-and-ads, woocommerce-google-analytics-integration] steps: - name: Run QIT - uses: woocommerce/grow/run-qit-extension@add/qit-workflows-test-build + uses: woocommerce/grow/run-qit-extension@actions-v1 with: qit-partner-user: ${{ secrets.QIT_PARTNER_USER }} qit-partner-secret: ${{ secrets.QIT_PARTNER_SECRET }} diff --git a/packages/github-actions/actions/run-qit-extension/action.yml b/packages/github-actions/actions/run-qit-extension/action.yml index 246f7aee..c9403d77 100644 --- a/packages/github-actions/actions/run-qit-extension/action.yml +++ b/packages/github-actions/actions/run-qit-extension/action.yml @@ -93,7 +93,7 @@ runs: - name: Activation test id: activation if: ${{ inputs.test-activation == 'true' }} - uses: woocommerce/grow/run-qit-annotate@add/qit-workflows-test-build + uses: woocommerce/grow/run-qit-annotate@actions-v1 with: type: activation extension: ${{ inputs.extension }} @@ -105,7 +105,7 @@ runs: - name: Security test id: security if: ${{ inputs.test-security == 'true' }} - uses: woocommerce/grow/run-qit-annotate@add/qit-workflows-test-build + uses: woocommerce/grow/run-qit-annotate@actions-v1 with: type: security extension: ${{ inputs.extension }} @@ -117,7 +117,7 @@ runs: - name: PHPStan test id: phpstan if: ${{ inputs.test-phpstan == 'true' }} - uses: woocommerce/grow/run-qit-annotate@add/qit-workflows-test-build + uses: woocommerce/grow/run-qit-annotate@actions-v1 with: type: phpstan extension: ${{ inputs.extension }} @@ -129,7 +129,7 @@ runs: - name: API test id: api if: ${{ inputs.test-api == 'true' }} - uses: woocommerce/grow/run-qit-annotate@add/qit-workflows-test-build + uses: woocommerce/grow/run-qit-annotate@actions-v1 with: type: api extension: ${{ inputs.extension }} @@ -141,7 +141,7 @@ runs: - name: E2E test id: e2e if: ${{ inputs.test-e2e == 'true' }} - uses: woocommerce/grow/run-qit-annotate@add/qit-workflows-test-build + uses: woocommerce/grow/run-qit-annotate@actions-v1 with: type: e2e extension: ${{ inputs.extension }}