From 106b07a8adf94293d5d8161f77af9458d45fd16f Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Sat, 10 Jun 2023 20:11:59 +0200 Subject: [PATCH] debug: See if a deployment from different actor would work --- .github/workflows/seo-report.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/seo-report.yaml b/.github/workflows/seo-report.yaml index 45f1363..7005cf4 100644 --- a/.github/workflows/seo-report.yaml +++ b/.github/workflows/seo-report.yaml @@ -1,7 +1,10 @@ name: Unlighthouse SEO Reports on: - [deployment_status, workflow_dispatch] + pull_request: + types: + - opened + - synchronize permissions: contents: read @@ -14,7 +17,6 @@ concurrency: jobs: build: - if: github.event.deployment_status.state == 'success' runs-on: ubuntu-latest steps: - name: Check out @@ -29,7 +31,7 @@ jobs: run: yarn global add @unlighthouse/cli puppeteer - name: Build Unlighthouse report - run: unlighthouse-ci --site ${{ github.event.deployment_status.target_url }} --build-static + run: unlighthouse-ci --site "https://omnidash.io" --build-static - name: Upload GitHub Pages artifact uses: actions/upload-pages-artifact@v1.0.8