From f3c233d2cda32352aa51c416c2c20dc97d45d84f Mon Sep 17 00:00:00 2001 From: sohit-dg <128470277+sohit-dg@users.noreply.github.com> Date: Mon, 7 Oct 2024 15:57:06 +0530 Subject: [PATCH] (add) : codeowners --- .github/CODEOWNERS | 7 +++++++ .github/workflows/ci.yaml | 42 +++++++++++++++++++-------------------- 2 files changed, 28 insertions(+), 21 deletions(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..0bef691b --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,7 @@ +# Frontend related files +*.js @sohit-dg +*.jsx @sohit-dg +*.ts @sohit-dg +*.tsx @sohit-dg +*.css @sohit-dg +*.scss @sohit-dg \ No newline at end of file diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 120f4b2b..97b3cf1c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,27 +1,27 @@ -name: Build on Pull Request +# name: Build on Pull Request -on: - pull_request: - branches: - - dev +# on: +# pull_request: +# branches: +# - dev -jobs: - build: - runs-on: ubuntu-latest +# jobs: +# build: +# runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 +# steps: +# - name: Checkout code +# uses: actions/checkout@v3 - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: "18" +# - name: Set up Node.js +# uses: actions/setup-node@v3 +# with: +# node-version: "18" - - name: Install dependencies - run: npm install -f +# - name: Install dependencies +# run: npm install -f - - name: Build the project - env: - CI: false - run: npm run build +# - name: Build the project +# env: +# CI: false +# run: npm run build