From bc9241fc84faeef8cd02b3d6e9c6b4f89a5b13ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rund=20B=2E=20Fagerjord?= Date: Mon, 15 Jun 2026 11:39:13 +0200 Subject: [PATCH] remove website-dev-pages.yml --- .github/workflows/website-dev-pages.yml | 44 ------------------------- 1 file changed, 44 deletions(-) diff --git a/.github/workflows/website-dev-pages.yml b/.github/workflows/website-dev-pages.yml index 20562a2e14b..8b137891791 100644 --- a/.github/workflows/website-dev-pages.yml +++ b/.github/workflows/website-dev-pages.yml @@ -1,45 +1 @@ -name: PR Previewer (Dev Site) -on: - pull_request: - types: [opened, synchronize, reopened, labeled] - branches: - - main - paths: - - "docs/**" - - "blog/**" - - "website/**" - -jobs: - build: - runs-on: ubuntu-latest - if: contains(github.event.pull_request.labels.*.name, 'devpages') - steps: - - name: Checkout - uses: actions/checkout@v3 - - - uses: actions/cache@v3 - with: - path: '**/node_modules' - key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} - - - name: Replace Title with PR Name - run: | - num="${{ github.event.pull_request.number }}" - title="${{ github.event.pull_request.title }}" - sed -Ei "0,/title:/{s/title:.*\"(.*)\"/title: \"$title (#$num)\"/}" website/docusaurus.config.js - - - name: Prettier & Build Website - run: | - cd website - yarn install && yarn prettier - yarn buildDevpage - - - name: Deploy Website 🚀 - uses: JamesIves/github-pages-deploy-action@v4 - with: - branch: dev-pages - folder: website/build - clean-exclude: | - package.json - netlify