From 09b42878163c8dd8add468f0651d5236c28d7b69 Mon Sep 17 00:00:00 2001 From: dhruvparekh12 Date: Wed, 18 Feb 2026 13:16:33 +0530 Subject: [PATCH 1/3] Use main branch for github action instead of prod-qa-pipeline --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 972201e..beb442d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,7 +60,7 @@ jobs: - uses: actions/checkout@v4 if: ${{ steps.release-plugin.conclusion == 'success' }} with: - ref: 'prod-qa-pipeline' + ref: 'main' - uses: EndBug/add-and-commit@v9 if: ${{ steps.release-plugin.conclusion == 'success' }} with: From 4994f4862dc68249856c92642915eecf0daa7cba Mon Sep 17 00:00:00 2001 From: dhaval Date: Wed, 4 Mar 2026 17:35:54 +0530 Subject: [PATCH 2/3] Update sca-scan.yml --- .github/workflows/sca-scan.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/sca-scan.yml b/.github/workflows/sca-scan.yml index f09161f..2307d48 100644 --- a/.github/workflows/sca-scan.yml +++ b/.github/workflows/sca-scan.yml @@ -13,3 +13,6 @@ jobs: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: args: --all-projects --fail-on=all + json: true + continue-on-error: true + - uses: contentstack/sca-policy@main From 57d66dcff44635478348e879d42ef479744c4064 Mon Sep 17 00:00:00 2001 From: Reetika-Chavan Date: Thu, 12 Mar 2026 16:05:38 +0530 Subject: [PATCH 3/3] feat: Add ASTRO farmework preset option --- src/config/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config/index.ts b/src/config/index.ts index fbb2f7f..fe51945 100755 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -16,6 +16,7 @@ const config = { CSR: './', ANGULAR: './dist', NUXT: './.output', + ASTRO: './dist', VUEJS: './dist', REMIX: './build', OTHER: './', @@ -27,6 +28,7 @@ const config = { { name: 'CSR (Client-Side Rendered)', value: 'CSR' }, { name: 'Angular', value: 'ANGULAR' }, { name: 'Nuxt', value: 'NUXT' }, + { name: 'Astro', value: 'ASTRO' }, { name: 'VueJs', value: 'VUEJS' }, { name: 'Remix', value: 'REMIX' }, { name: 'Other', value: 'OTHER' }, @@ -47,7 +49,7 @@ const config = { VariablePreparationTypeOptions.SKIP_SETUP, ], variableType: '', - supportedFrameworksForServerCommands: ['ANGULAR', 'OTHER', 'REMIX', 'NUXT'], + supportedFrameworksForServerCommands: ['ANGULAR', 'OTHER', 'REMIX', 'NUXT', 'ASTRO'], supportedFileUploadMethods: ['last file upload', 'new file'] };