From 65a986f76fa596a89f56a6a3b97baaf6dcf747ad Mon Sep 17 00:00:00 2001 From: ihorkuf Date: Fri, 24 Apr 2026 12:47:41 +0300 Subject: [PATCH 1/5] Create CODEOWNERS --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..e32a21f --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @softservedata From add199003b1de41f0b57380f6db92a7bc82f72a9 Mon Sep 17 00:00:00 2001 From: ihorkuf Date: Fri, 24 Apr 2026 13:02:26 +0300 Subject: [PATCH 2/5] Create pull_request_template.md --- .github/pull_request_template.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1 @@ + From 2a641ffb67b23dd8352ee369b61286d0721f4ae4 Mon Sep 17 00:00:00 2001 From: ihorkuf Date: Fri, 24 Apr 2026 13:44:30 +0300 Subject: [PATCH 3/5] Delete .github/pull_request_template.md --- .github/pull_request_template.md | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 8b13789..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1 +0,0 @@ - From d0553b3476c30cc9c5fe0b11ecc1d85d248fdcd0 Mon Sep 17 00:00:00 2001 From: ihorkuf Date: Fri, 24 Apr 2026 13:45:15 +0300 Subject: [PATCH 4/5] Create pull_request_template.md pull_request_template --- .github/pull_request_template.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..55bc435 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,14 @@ +## Describe your changes + +... + +## Issue ticket number and link + +... + +## Checklist before requesting a review + +- [ ] I have performed a self-review of my code +- [ ] If it is a core feature, I have added thorough tests +- [ ] Do we need to implement analytics? +- [ ] Will this be part of a product update? If yes, please write one phrase about this update From 5f72802d5ecaafbb6780dd55e741806681231c3d Mon Sep 17 00:00:00 2001 From: ihorkuf Date: Fri, 24 Apr 2026 14:47:51 +0300 Subject: [PATCH 5/5] Create pr-notify.yml Discord chanel --- .github/workflows/pr-notify.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pr-notify.yml diff --git a/.github/workflows/pr-notify.yml b/.github/workflows/pr-notify.yml new file mode 100644 index 0000000..453dbfe --- /dev/null +++ b/.github/workflows/pr-notify.yml @@ -0,0 +1,18 @@ +name: PR Notification + +on: + pull_request: + types: [opened] + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Send Discord notification + run: | + curl -H "Content-Type: application/json" \ + -X POST \ + -d '{ + "content": "šŸš€ New Pull Request created: ${{ github.event.pull_request.title }}\nšŸ”— ${{ github.event.pull_request.html_url }}" + }' \ + ${{ secrets.DISCORD_WEBHOOK }}