From 868d27b9f5e18e736e423086392f3c9939e885b3 Mon Sep 17 00:00:00 2001 From: Ankit Bhardwaj <97785108+Ankit6149@users.noreply.github.com> Date: Tue, 28 Jul 2026 01:42:13 +0530 Subject: [PATCH 1/2] chore: generate temporary source audit snapshot --- .github/workflows/audit-snapshot.yml | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/audit-snapshot.yml diff --git a/.github/workflows/audit-snapshot.yml b/.github/workflows/audit-snapshot.yml new file mode 100644 index 0000000..e10203e --- /dev/null +++ b/.github/workflows/audit-snapshot.yml @@ -0,0 +1,32 @@ +name: Source Audit Snapshot + +on: + push: + branches: [ audit-snapshot ] + +permissions: + contents: read + +jobs: + snapshot: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 1 + + - name: Create source snapshot + run: | + rm -rf .git node_modules .next + zip -r hardware-studio-audit.zip . \ + -x 'hardware-studio-audit.zip' \ + -x '.git/*' \ + -x 'node_modules/*' \ + -x '.next/*' + + - name: Upload source snapshot + uses: actions/upload-artifact@v4 + with: + name: hardware-studio-source-audit + path: hardware-studio-audit.zip + retention-days: 1 From 157af1444743abdf8ac91f31ca2be301fe723a01 Mon Sep 17 00:00:00 2001 From: Ankit Bhardwaj <97785108+Ankit6149@users.noreply.github.com> Date: Tue, 28 Jul 2026 01:42:34 +0530 Subject: [PATCH 2/2] chore: trigger source audit snapshot --- .audit-snapshot-trigger | 1 + 1 file changed, 1 insertion(+) create mode 100644 .audit-snapshot-trigger diff --git a/.audit-snapshot-trigger b/.audit-snapshot-trigger new file mode 100644 index 0000000..4df7d87 --- /dev/null +++ b/.audit-snapshot-trigger @@ -0,0 +1 @@ +Snapshot current master for read-only audit.