From 5c29b98fceb31897f284b4fbe6f93a1faeb39e17 Mon Sep 17 00:00:00 2001 From: Michal Nowacki Date: Mon, 24 Jul 2023 15:40:07 -0400 Subject: [PATCH] ci: fix on-demand run-integration-tests workflow (#698) Checkout the code from `origin` and `ref` inputs :facepalm:! --- .github/workflows/run-integration-tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/run-integration-tests.yml b/.github/workflows/run-integration-tests.yml index 35f977890..9f2ee3144 100644 --- a/.github/workflows/run-integration-tests.yml +++ b/.github/workflows/run-integration-tests.yml @@ -35,6 +35,8 @@ jobs: uses: actions/checkout@v3 with: path: php-agent + repository: ${{ inputs.origin }}/newrelic-php-agent + ref: ${{ inputs.ref }} - name: Enable arm64 emulation if: ${{ matrix.arch == 'arm64' }} uses: docker/setup-qemu-action@v2 @@ -74,6 +76,8 @@ jobs: uses: actions/checkout@v3 with: path: php-agent + repository: ${{ inputs.origin }}/newrelic-php-agent + ref: ${{ inputs.ref }} - name: Enable arm64 emulation run: | docker run --privileged --rm tonistiigi/binfmt --install arm64 @@ -116,6 +120,8 @@ jobs: uses: actions/checkout@v3 with: path: php-agent + repository: ${{ inputs.origin }}/newrelic-php-agent + ref: ${{ inputs.ref }} - name: Get integration_runner uses: actions/download-artifact@v3 with: