From 695a70bd6234787d863a59af85fa5c88d931488c Mon Sep 17 00:00:00 2001 From: Jaguar Date: Fri, 17 Apr 2026 13:19:30 +0300 Subject: [PATCH 1/3] Create pull request template Added a pull request template to guide contributors. --- .github/pull_request_template.md | 9 +++++++++ 1 file changed, 9 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..378b862 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +## 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 75a2d95c36cb7071747ea792e26c58137acf5c6f Mon Sep 17 00:00:00 2001 From: Jaguar Date: Fri, 17 Apr 2026 22:27:09 +0300 Subject: [PATCH 2/3] Add Discord notification for new pull requests --- .github/workflows/discord.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/discord.yml diff --git a/.github/workflows/discord.yml b/.github/workflows/discord.yml new file mode 100644 index 0000000..e1ad478 --- /dev/null +++ b/.github/workflows/discord.yml @@ -0,0 +1,25 @@ +name: Discord PR Notification + +on: + pull_request: + types: [opened] + +jobs: + notify: + runs-on: ubuntu-latest + + steps: + - name: Send PR notification to Discord + run: | + curl -H "Content-Type: application/json" \ + -d '{ + "content": "🚀 New Pull Request created!", + "embeds": [ + { + "title": "${{ github.event.pull_request.title }}", + "url": "${{ github.event.pull_request.html_url }}", + "description": "Author: ${{ github.event.pull_request.user.login }}" + } + ] + }' \ + "${{ secrets.DISCORD_WEBHOOK }}" From d6991bee6d749893a7d36528d540c1d6fe333e47 Mon Sep 17 00:00:00 2001 From: Jaguar Date: Fri, 17 Apr 2026 19:30:49 +0000 Subject: [PATCH 3/3] deleted dot --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f95131..7cc2547 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Task on GitHub Topic -1. Add user `softservedata` to this repository. +1. Add user `softservedata` to this repository 2. Create branch `develop` as default branch.