From 1ce310e53ff501e855b8c1b51955a7f295ab4070 Mon Sep 17 00:00:00 2001 From: Marko Kubrachenko Date: Thu, 2 Jul 2026 13:48:41 +0200 Subject: [PATCH] ci: skip content rebuild and duplicate CloudFront invalidation on nginx.conf-only pushes docs.yaml runs on every master push and invalidates CloudFront, while deploy-nginx.yml already deploys and invalidates on nginx.conf changes - so a commit touching only nginx.conf invalidated the same distribution twice and triggered a pointless content rebuild. Ignore nginx.conf here. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/docs.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 6c2ee81a00..4038bdf19c 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -4,6 +4,9 @@ on: push: branches: - master + # nginx.conf is deployed and invalidated by deploy-nginx.yml; avoid a duplicate here. + paths-ignore: + - nginx.conf workflow_dispatch: jobs: