From 8ececb96580070090b52c2060ad98ce09a802768 Mon Sep 17 00:00:00 2001 From: Akansha Sakhre Date: Fri, 27 Feb 2026 14:45:04 +0530 Subject: [PATCH] Change trigger from push to pull_request for documentation consolidation workflow --- .github/workflows/export_and_update.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/export_and_update.yml b/.github/workflows/export_and_update.yml index f5fad2eb6..9cb439bfc 100644 --- a/.github/workflows/export_and_update.yml +++ b/.github/workflows/export_and_update.yml @@ -1,7 +1,7 @@ name: Consolidate and Update Documentation on: - push: + pull_request: branches: [main] jobs: @@ -114,3 +114,11 @@ jobs: file_id=file_id ) EOF + + # Step 6: Upload merged documentation as artifact + - name: Upload merged documentation + uses: actions/upload-artifact@v4 + with: + name: merged-documentation + path: merged_documentation.md + retention-days: 30