From dd75ef0e12141be5d121a301f6bbf7935a0294ea Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Tue, 6 May 2025 12:01:25 +0530 Subject: [PATCH 01/17] Create auto pr review .yml file --- .github/workflows/auto-pr-review.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/auto-pr-review.yml diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml new file mode 100644 index 000000000..cf9b7a5de --- /dev/null +++ b/.github/workflows/auto-pr-review.yml @@ -0,0 +1,18 @@ +name: Auto PR Review + +on: + pull_request: + types: [opened, edited, synchronize] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-node@v1 + - uses: omio-labs/pr-reviewer-bot@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # I need to create new token for this repo and add it to secrets, cannot use the default GITHUB_TOKEN. + # because this token does not have permission to post reviews for PRs. \ No newline at end of file From 117a75a83573a3f415324f3e38c9131e14e0cffd Mon Sep 17 00:00:00 2001 From: NirajC-Microsoft Date: Tue, 6 May 2025 14:51:03 +0530 Subject: [PATCH 02/17] Update auto-pr-review.yml --- .github/workflows/auto-pr-review.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index cf9b7a5de..31679299f 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -13,6 +13,6 @@ jobs: - uses: actions/setup-node@v1 - uses: omio-labs/pr-reviewer-bot@v1 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.Git_Personal_Token }} # I need to create new token for this repo and add it to secrets, cannot use the default GITHUB_TOKEN. - # because this token does not have permission to post reviews for PRs. \ No newline at end of file + # because this token does not have permission to post reviews for PRs. From ba33402296effb0059f7f0e9391dfa3de57e8fae Mon Sep 17 00:00:00 2001 From: NirajC-Microsoft Date: Tue, 6 May 2025 15:00:05 +0530 Subject: [PATCH 03/17] Update auto-pr-review.yml --- .github/workflows/auto-pr-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index 31679299f..98089b7eb 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -13,6 +13,6 @@ jobs: - uses: actions/setup-node@v1 - uses: omio-labs/pr-reviewer-bot@v1 with: - GITHUB_TOKEN: ${{ secrets.Git_Personal_Token }} + GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} # I need to create new token for this repo and add it to secrets, cannot use the default GITHUB_TOKEN. # because this token does not have permission to post reviews for PRs. From 09dbdbd39862f3813cc344e904f567c3cf3f8397 Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Wed, 7 May 2025 08:59:34 +0530 Subject: [PATCH 04/17] Updates in - Created auto pr review .yml file --- .github/workflows/auto-pr-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index 98089b7eb..b6018ca16 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -15,4 +15,4 @@ jobs: with: GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} # I need to create new token for this repo and add it to secrets, cannot use the default GITHUB_TOKEN. - # because this token does not have permission to post reviews for PRs. + # because this token does not have permission to post reviews for PRs From 1b732540f9c3fe8c6497fad515939b327fbef7e2 Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Wed, 7 May 2025 09:18:12 +0530 Subject: [PATCH 05/17] Update in docker file --- .github/workflows/docker-build-and-push.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-build-and-push.yml b/.github/workflows/docker-build-and-push.yml index 5dcd094e3..6a4d6d8a1 100644 --- a/.github/workflows/docker-build-and-push.yml +++ b/.github/workflows/docker-build-and-push.yml @@ -76,8 +76,8 @@ jobs: file: ./src/WebApp.Dockerfile push: ${{ github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' || github.ref_name == 'dependabotchanges' }} tags: | - ${{ steps.registry.outputs.int_registry }}/webapp:${{ steps.determine_tag.outputs.tagname }} - ${{ steps.registry.outputs.int_registry }}/webapp:${{ steps.determine_tag.outputs.tagname }}_${{ steps.date.outputs.date }}_${{ github.run_number }} + ${{ steps.registry.outputs.int_registry }} webapp:${{ steps.determine_tag.outputs.tagname }} + ${{ steps.registry.outputs.int_registry }} webapp:${{ steps.determine_tag.outputs.tagname }}_${{ steps.date.outputs.date }}_${{ github.run_number }} - name: Build Docker Image and optionally push - External Registry if: ${{ github.ref_name == 'main' }} @@ -87,6 +87,6 @@ jobs: file: ./src/WebApp.Dockerfile push: ${{github.ref_name == 'main' }} tags: | - ${{ steps.registry.outputs.ext_registry }}/webapp:${{ steps.determine_tag.outputs.tagname }} - ${{ steps.registry.outputs.ext_registry }}/webapp:${{ steps.determine_tag.outputs.tagname }}_${{ steps.date.outputs.date }}_${{ github.run_number }} + ${{ steps.registry.outputs.ext_registry }} webapp:${{ steps.determine_tag.outputs.tagname }} + ${{ steps.registry.outputs.ext_registry }} webapp:${{ steps.determine_tag.outputs.tagname }}_${{ steps.date.outputs.date }}_${{ github.run_number }} From 21cacabcd2591511d5bd637e2df0d134265a06ae Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Wed, 7 May 2025 09:45:17 +0530 Subject: [PATCH 06/17] Changed the auto pr reviewer --- .github/workflows/auto-pr-review.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index b6018ca16..bae1664ff 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -5,14 +5,16 @@ on: types: [opened, edited, synchronize] jobs: - test: + review: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 - - uses: omio-labs/pr-reviewer-bot@v1 + - name: Checkout PR code + uses: actions/checkout@v3 + + - name: Run Auto PR Review + uses: tianhaoz95/auto-pr-review@v1 with: - GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} + github-token: ${{ secrets.GIT_TOKEN }} # I need to create new token for this repo and add it to secrets, cannot use the default GITHUB_TOKEN. # because this token does not have permission to post reviews for PRs From 6f7625a3744d23f526c54c7c77e39b6cde91049a Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Wed, 7 May 2025 09:52:53 +0530 Subject: [PATCH 07/17] Changed the reviewer version --- .github/workflows/auto-pr-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index bae1664ff..bb4676650 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v3 - name: Run Auto PR Review - uses: tianhaoz95/auto-pr-review@v1 + uses: tianhaoz95/auto-pr-review@v0.0.9 with: github-token: ${{ secrets.GIT_TOKEN }} # I need to create new token for this repo and add it to secrets, cannot use the default GITHUB_TOKEN. From 863ab73f86b03a995d74325935e3ba04fe72084c Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Wed, 7 May 2025 09:55:42 +0530 Subject: [PATCH 08/17] using omio labs as reviewer --- .github/workflows/auto-pr-review.yml | 35 ++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index bb4676650..bc571c3da 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -1,20 +1,35 @@ name: Auto PR Review -on: - pull_request: - types: [opened, edited, synchronize] +on: [pull_request] jobs: - review: + test: runs-on: ubuntu-latest steps: - - name: Checkout PR code - uses: actions/checkout@v3 - - - name: Run Auto PR Review - uses: tianhaoz95/auto-pr-review@v0.0.9 + - uses: actions/checkout@v1 + - uses: actions/setup-node@v1 + - uses: omio-labs/pr-reviewer-bot@v1 with: - github-token: ${{ secrets.GIT_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} + +# name: Auto PR Review + +# on: +# pull_request: +# types: [opened, edited, synchronize] + +# jobs: +# review: +# runs-on: ubuntu-latest + +# steps: +# - name: Checkout PR code +# uses: actions/checkout@v3 + +# - name: Run Auto PR Review +# uses: tianhaoz95/auto-pr-review@v0.0.9 +# with: +# github-token: ${{ secrets.GIT_TOKEN }} # I need to create new token for this repo and add it to secrets, cannot use the default GITHUB_TOKEN. # because this token does not have permission to post reviews for PRs From d645b0b0456ea655942b9207e83cb39ad7ff7d30 Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Thu, 8 May 2025 09:48:50 +0530 Subject: [PATCH 09/17] Add config files --- .github/pr-reviewer-bot.json | 45 ++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/pr-reviewer-bot.json diff --git a/.github/pr-reviewer-bot.json b/.github/pr-reviewer-bot.json new file mode 100644 index 000000000..8938340f4 --- /dev/null +++ b/.github/pr-reviewer-bot.json @@ -0,0 +1,45 @@ +{ + "model": "gpt-4", + "commentMode": "multi", + "language": "en", + "filesToIgnore": [ + "**/*.md", + "**/*.yml", + "**/*.json", + "**/__pycache__/**", + "**/*.lock" + ], + "rules": [ + { + "name": "No TODOs in code", + "description": "Prevent merging PRs with TODO comments left in code.", + "pattern": "TODO", + "failOnMatch": true + }, + { + "name": "Avoid console/debug prints", + "description": "Remove print/debug/log statements before committing.", + "pattern": "console\\.log|print\\(|debugger;", + "failOnMatch": true + }, + { + "name": "Require tests for Python changes", + "description": "Changes to backend Python code should include tests.", + "pathPattern": "backend/**/*.py", + "requireMatchingTest": true + }, + { + "name": "Require tests for React components", + "description": "Ensure that React component changes include test coverage.", + "pathPattern": "frontend/src/components/**/*.tsx?", + "requireMatchingTest": true + }, + { + "name": "Avoid hardcoded secrets or keys", + "description": "Scan for obvious secret patterns in code.", + "pattern": "(api[_-]?key|secret|password)\\s*[:=]\\s*[\"'].*[\"']", + "failOnMatch": true + } + ] + } + \ No newline at end of file From 139a6cbccd6941a96a8348ce99cc4c80f2958f9f Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Thu, 8 May 2025 09:56:24 +0530 Subject: [PATCH 10/17] Remove with block from yml --- .github/workflows/auto-pr-review.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index bc571c3da..3db4e944a 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -10,8 +10,8 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 - uses: omio-labs/pr-reviewer-bot@v1 - with: - GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} + # with: + # GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} # name: Auto PR Review From fd84c89c77395d9ae53b5c5c577b4119ad62610c Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Thu, 8 May 2025 09:57:51 +0530 Subject: [PATCH 11/17] add with block in yml --- .github/workflows/auto-pr-review.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index 3db4e944a..bc571c3da 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -10,8 +10,8 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 - uses: omio-labs/pr-reviewer-bot@v1 - # with: - # GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} + with: + GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} # name: Auto PR Review From 2ec0b0504b256c3503bfe2d6f768c519bb87d523 Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Thu, 8 May 2025 10:31:42 +0530 Subject: [PATCH 12/17] Remove comments --- .github/workflows/auto-pr-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index bc571c3da..217a5e813 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -13,7 +13,7 @@ jobs: with: GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} -# name: Auto PR Review + # on: # pull_request: From ceb64f17f1a89c3bc447c3bde7b6cb93bb58f52d Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Thu, 8 May 2025 11:51:55 +0530 Subject: [PATCH 13/17] Change version of checkout actions --- .github/workflows/auto-pr-review.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index 217a5e813..247b33b2a 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 - uses: omio-labs/pr-reviewer-bot@v1 - with: + env: GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} From f293fc7a06869421d757aac98e7fa870ff03512a Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Thu, 8 May 2025 11:58:01 +0530 Subject: [PATCH 14/17] Add github token with 'with' block --- .github/workflows/auto-pr-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index 247b33b2a..50756f9db 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 - uses: omio-labs/pr-reviewer-bot@v1 - env: + with: GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} From 64bdcac1877275bc72acbc79a4bf4bed410e590d Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Mon, 12 May 2025 09:42:31 +0530 Subject: [PATCH 15/17] change pr-boat confir file format --- .github/pr-reviewer-bot.json | 45 ------------------------------------ .github/pr-reviewer-bot.yml | 35 ++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 45 deletions(-) delete mode 100644 .github/pr-reviewer-bot.json create mode 100644 .github/pr-reviewer-bot.yml diff --git a/.github/pr-reviewer-bot.json b/.github/pr-reviewer-bot.json deleted file mode 100644 index 8938340f4..000000000 --- a/.github/pr-reviewer-bot.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "model": "gpt-4", - "commentMode": "multi", - "language": "en", - "filesToIgnore": [ - "**/*.md", - "**/*.yml", - "**/*.json", - "**/__pycache__/**", - "**/*.lock" - ], - "rules": [ - { - "name": "No TODOs in code", - "description": "Prevent merging PRs with TODO comments left in code.", - "pattern": "TODO", - "failOnMatch": true - }, - { - "name": "Avoid console/debug prints", - "description": "Remove print/debug/log statements before committing.", - "pattern": "console\\.log|print\\(|debugger;", - "failOnMatch": true - }, - { - "name": "Require tests for Python changes", - "description": "Changes to backend Python code should include tests.", - "pathPattern": "backend/**/*.py", - "requireMatchingTest": true - }, - { - "name": "Require tests for React components", - "description": "Ensure that React component changes include test coverage.", - "pathPattern": "frontend/src/components/**/*.tsx?", - "requireMatchingTest": true - }, - { - "name": "Avoid hardcoded secrets or keys", - "description": "Scan for obvious secret patterns in code.", - "pattern": "(api[_-]?key|secret|password)\\s*[:=]\\s*[\"'].*[\"']", - "failOnMatch": true - } - ] - } - \ No newline at end of file diff --git a/.github/pr-reviewer-bot.yml b/.github/pr-reviewer-bot.yml new file mode 100644 index 000000000..22364a485 --- /dev/null +++ b/.github/pr-reviewer-bot.yml @@ -0,0 +1,35 @@ +model: gpt-4 +commentMode: multi +language: en +filesToIgnore: + - "**/*.md" + - "**/*.yml" + - "**/*.json" + - "**/__pycache__/**" + - "**/*.lock" + +rules: + - name: No TODOs in code + description: Prevent merging PRs with TODO comments left in code. + pattern: "TODO" + failOnMatch: true + + - name: Avoid console/debug prints + description: Remove print/debug/log statements before committing. + pattern: "console\\.log|print\\(|debugger;" + failOnMatch: true + + - name: Require tests for Python changes + description: Changes to backend Python code should include tests. + pathPattern: "backend/**/*.py" + requireMatchingTest: true + + - name: Require tests for React components + description: Ensure that React component changes include test coverage. + pathPattern: "frontend/src/components/**/*.tsx?" + requireMatchingTest: true + + - name: Avoid hardcoded secrets or keys + description: Scan for obvious secret patterns in code. + pattern: "(api[_-]?key|secret|password)\\s*[:=]\\s*[\"'].*[\"']" + failOnMatch: true \ No newline at end of file From 2343f2ad3aaf93ff8865149728f23c1da2c06ece Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Mon, 12 May 2025 09:45:27 +0530 Subject: [PATCH 16/17] undo the auto-pr-bot format changes --- .github/pr-reviewer-bot.json | 45 ++++++++++++++++++++++++++++++++++++ .github/pr-reviewer-bot.yml | 35 ---------------------------- 2 files changed, 45 insertions(+), 35 deletions(-) create mode 100644 .github/pr-reviewer-bot.json delete mode 100644 .github/pr-reviewer-bot.yml diff --git a/.github/pr-reviewer-bot.json b/.github/pr-reviewer-bot.json new file mode 100644 index 000000000..8938340f4 --- /dev/null +++ b/.github/pr-reviewer-bot.json @@ -0,0 +1,45 @@ +{ + "model": "gpt-4", + "commentMode": "multi", + "language": "en", + "filesToIgnore": [ + "**/*.md", + "**/*.yml", + "**/*.json", + "**/__pycache__/**", + "**/*.lock" + ], + "rules": [ + { + "name": "No TODOs in code", + "description": "Prevent merging PRs with TODO comments left in code.", + "pattern": "TODO", + "failOnMatch": true + }, + { + "name": "Avoid console/debug prints", + "description": "Remove print/debug/log statements before committing.", + "pattern": "console\\.log|print\\(|debugger;", + "failOnMatch": true + }, + { + "name": "Require tests for Python changes", + "description": "Changes to backend Python code should include tests.", + "pathPattern": "backend/**/*.py", + "requireMatchingTest": true + }, + { + "name": "Require tests for React components", + "description": "Ensure that React component changes include test coverage.", + "pathPattern": "frontend/src/components/**/*.tsx?", + "requireMatchingTest": true + }, + { + "name": "Avoid hardcoded secrets or keys", + "description": "Scan for obvious secret patterns in code.", + "pattern": "(api[_-]?key|secret|password)\\s*[:=]\\s*[\"'].*[\"']", + "failOnMatch": true + } + ] + } + \ No newline at end of file diff --git a/.github/pr-reviewer-bot.yml b/.github/pr-reviewer-bot.yml deleted file mode 100644 index 22364a485..000000000 --- a/.github/pr-reviewer-bot.yml +++ /dev/null @@ -1,35 +0,0 @@ -model: gpt-4 -commentMode: multi -language: en -filesToIgnore: - - "**/*.md" - - "**/*.yml" - - "**/*.json" - - "**/__pycache__/**" - - "**/*.lock" - -rules: - - name: No TODOs in code - description: Prevent merging PRs with TODO comments left in code. - pattern: "TODO" - failOnMatch: true - - - name: Avoid console/debug prints - description: Remove print/debug/log statements before committing. - pattern: "console\\.log|print\\(|debugger;" - failOnMatch: true - - - name: Require tests for Python changes - description: Changes to backend Python code should include tests. - pathPattern: "backend/**/*.py" - requireMatchingTest: true - - - name: Require tests for React components - description: Ensure that React component changes include test coverage. - pathPattern: "frontend/src/components/**/*.tsx?" - requireMatchingTest: true - - - name: Avoid hardcoded secrets or keys - description: Scan for obvious secret patterns in code. - pattern: "(api[_-]?key|secret|password)\\s*[:=]\\s*[\"'].*[\"']" - failOnMatch: true \ No newline at end of file From bc0ccd325826d5884f8acaaf1b273f4179911890 Mon Sep 17 00:00:00 2001 From: "Niraj Chaudhari (Persistent Systems Inc)" Date: Mon, 12 May 2025 16:05:28 +0530 Subject: [PATCH 17/17] change config file name --- .github/{pr-reviewer-bot.json => .pr-bot.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{pr-reviewer-bot.json => .pr-bot.json} (100%) diff --git a/.github/pr-reviewer-bot.json b/.github/.pr-bot.json similarity index 100% rename from .github/pr-reviewer-bot.json rename to .github/.pr-bot.json