From 02af2c22c66c9eaa7388fad4a474581243d1e24c Mon Sep 17 00:00:00 2001 From: Prem Sathisha <156250232+premsathisha@users.noreply.github.com> Date: Thu, 30 Jul 2026 19:59:16 +0530 Subject: [PATCH 1/3] Add security reporting policy --- SECURITY.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..0a211c8 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,15 @@ +# Security Policy + +## Reporting a Vulnerability + +Please report suspected vulnerabilities privately through this repository's private vulnerability-reporting feature. Do not open a public issue for a potential security problem. + +Include enough detail to reproduce the issue safely, such as the affected version, impact, steps to reproduce, and any proof of concept. + +## Scope + +Reports about vulnerabilities in the application, its build and release process, dependencies, and repository automation are in scope. + +## Response + +Reports are reviewed as time permits. Acknowledgment and remediation timelines depend on severity, reproducibility, and available maintainer capacity. \ No newline at end of file From aef390841cf910dbb077c2b415358998bba5414d Mon Sep 17 00:00:00 2001 From: Prem Sathisha <156250232+premsathisha@users.noreply.github.com> Date: Thu, 30 Jul 2026 19:59:23 +0530 Subject: [PATCH 2/3] Add dependency review --- .github/workflows/dependency-review.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/dependency-review.yml diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml new file mode 100644 index 0000000..491233a --- /dev/null +++ b/.github/workflows/dependency-review.yml @@ -0,0 +1,14 @@ +name: Dependency Review + +on: + pull_request: + +permissions: + contents: read + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: Dependency review + uses: actions/dependency-review-action@v4 From 7ef4b4766476aad59bc76d846a346a01a6e1af59 Mon Sep 17 00:00:00 2001 From: Prem Sathisha <156250232+premsathisha@users.noreply.github.com> Date: Thu, 30 Jul 2026 19:59:40 +0530 Subject: [PATCH 3/3] Add code scanning --- .github/workflows/codeql.yml | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..25a2b15 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,39 @@ +name: CodeQL + +on: + push: + branches: [main] + pull_request: + branches: [main] + schedule: + - cron: '27 3 * * 1' + +permissions: + contents: read + security-events: write + actions: read + +jobs: + analyze: + name: Analyze (${{ matrix.language }}) + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + language: [javascript-typescript] + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + - name: Perform CodeQL analysis + uses: github/codeql-action/analyze@v3 + with: + category: /language:${{ matrix.language }}