From 0c0d60d176bfb3aa56319468a167f39cefc2320f Mon Sep 17 00:00:00 2001 From: Protik Biswas Date: Mon, 13 Apr 2026 16:37:03 +0530 Subject: [PATCH 1/3] added color property in home page --- src/HomePage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/HomePage.tsx b/src/HomePage.tsx index 5dadb587..bd1327c1 100644 --- a/src/HomePage.tsx +++ b/src/HomePage.tsx @@ -60,6 +60,7 @@ const createStyles = () => fontSize: 40, fontWeight: '600', // SemiBold paddingLeft: 36, + color: 'black', }, }); From 49b228ccd4a03082031c38d50f437296f503f41a Mon Sep 17 00:00:00 2001 From: Protik Biswas Date: Tue, 14 Apr 2026 10:13:56 +0530 Subject: [PATCH 2/3] disbaling codeQL --- .github/workflows/codeql.yml | 45 ++++++++++++++++++++++++++++++++++++ 1 file changed, 45 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 00000000..643e4dea --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,45 @@ +name: "CodeQL" + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + schedule: + - cron: '0 6 * * 1' + +jobs: + analyze: + name: Analyze (${{ matrix.language }}) + runs-on: ${{ (matrix.language == 'c-cpp' && 'windows-latest') || 'ubuntu-latest' }} + permissions: + security-events: write + packages: read + actions: read + contents: read + + strategy: + fail-fast: false + matrix: + language: + - javascript-typescript + - c-cpp + # Ruby is intentionally excluded — the repo only has a Podfile, + # which is not enough Ruby source for CodeQL to analyze. + + steps: + - name: Checkout repository + 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 }}" From 40187728855123d7873a5d9e7f7afe37b4ee3560 Mon Sep 17 00:00:00 2001 From: Protik Biswas Date: Tue, 14 Apr 2026 12:54:56 +0530 Subject: [PATCH 3/3] Revert "disbaling codeQL" This reverts commit 49b228ccd4a03082031c38d50f437296f503f41a. --- .github/workflows/codeql.yml | 45 ------------------------------------ 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index 643e4dea..00000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - schedule: - - cron: '0 6 * * 1' - -jobs: - analyze: - name: Analyze (${{ matrix.language }}) - runs-on: ${{ (matrix.language == 'c-cpp' && 'windows-latest') || 'ubuntu-latest' }} - permissions: - security-events: write - packages: read - actions: read - contents: read - - strategy: - fail-fast: false - matrix: - language: - - javascript-typescript - - c-cpp - # Ruby is intentionally excluded — the repo only has a Podfile, - # which is not enough Ruby source for CodeQL to analyze. - - steps: - - name: Checkout repository - 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 }}"