diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e2f049c856b..f8f0b1cf267 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -69,7 +69,7 @@ jobs: - name: Ping statistics server with test results run: | curl https://raw.githubusercontent.com/hydephp/develop/ef6f93ed976030540b0e4fc946fb0cb9ba45cc14/monorepo/scripts/ping-openanalytics-testrunner.php -o ping.php - php ping.php "Monorepo CI Matrix" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ github.ref_name }} + php ping.php "Monorepo CI Matrix" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ env.GITHUB_REF_NAME }} system-testing: strategy: @@ -213,7 +213,7 @@ jobs: run: | cp build/junit.xml report.xml curl https://raw.githubusercontent.com/hydephp/develop/ef6f93ed976030540b0e4fc946fb0cb9ba45cc14/monorepo/scripts/ping-openanalytics-testrunner.php -o ping.php - php ping.php "Monorepo PR Test" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ github.ref_name }} + php ping.php "Monorepo PR Test" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ env.GITHUB_REF_NAME }} - name: Upload coverage artifacts uses: actions/upload-artifact@v1 diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index d6314ed673c..0eb5117d531 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -30,7 +30,7 @@ jobs: - name: Ping statistics server with test results run: | curl https://raw.githubusercontent.com/hydephp/develop/ef6f93ed976030540b0e4fc946fb0cb9ba45cc14/monorepo/scripts/ping-openanalytics-testrunner.php -o ping.php - php ping.php "Monorepo Smoke Tests" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ github.ref_name }} + php ping.php "Monorepo Smoke Tests" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ env.GITHUB_REF_NAME }} test-coverage: @@ -69,4 +69,4 @@ jobs: - name: Ping statistics server with test results run: | curl https://raw.githubusercontent.com/hydephp/develop/ef6f93ed976030540b0e4fc946fb0cb9ba45cc14/monorepo/scripts/ping-openanalytics-testrunner.php -o ping.php - php ping.php "Monorepo Smoke Tests - Coverage" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ github.ref_name }} + php ping.php "Monorepo Smoke Tests - Coverage" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ env.GITHUB_REF_NAME }} diff --git a/.github/workflows/test-pull-requests.yml b/.github/workflows/test-pull-requests.yml index cea4ae2f3bc..9c2200b7bc4 100644 --- a/.github/workflows/test-pull-requests.yml +++ b/.github/workflows/test-pull-requests.yml @@ -52,7 +52,7 @@ jobs: run: | cp build/junit.xml report.xml curl https://raw.githubusercontent.com/hydephp/develop/ef6f93ed976030540b0e4fc946fb0cb9ba45cc14/monorepo/scripts/ping-openanalytics-testrunner.php -o ping.php - php ping.php "Monorepo PR Test" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ github.ref_name }} + php ping.php "Monorepo PR Test" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ env.GITHUB_REF_NAME }} test-matrix: strategy: @@ -78,4 +78,4 @@ jobs: - name: Ping statistics server with test results run: | curl https://raw.githubusercontent.com/hydephp/develop/ef6f93ed976030540b0e4fc946fb0cb9ba45cc14/monorepo/scripts/ping-openanalytics-testrunner.php -o ping.php - php ping.php "Monorepo PR Matrix" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ github.ref_name }} + php ping.php "Monorepo PR Matrix" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ env.GITHUB_REF_NAME }}