diff --git a/.github/workflows/docs-gate.yml b/.github/workflows/docs-gate.yml new file mode 100644 index 000000000..08c9a873f --- /dev/null +++ b/.github/workflows/docs-gate.yml @@ -0,0 +1,14 @@ +name: Docs Gate + +on: + push: + branches: [main] + paths: ['docs/**'] + pull_request: + paths: ['docs/**'] + +jobs: + gate: + runs-on: ubuntu-latest + steps: + - run: echo "Docs path filter matched; Vercel deployment proceeding" diff --git a/.vercelignore b/.vercelignore new file mode 100644 index 000000000..9eb5faa7c --- /dev/null +++ b/.vercelignore @@ -0,0 +1,2 @@ +* +!docs/**