From 7ea01bf5c800e8d9d423bd8ed2643df068c12f6d Mon Sep 17 00:00:00 2001 From: khomenkooleksandr <167673981+khomenkooleksandr@users.noreply.github.com> Date: Wed, 8 Jan 2025 23:00:31 +0100 Subject: [PATCH 1/6] 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 00000000..c9686c63 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +@softservedata From e95f72be9961bb49898a6b13d0bd7e54cefaba5a Mon Sep 17 00:00:00 2001 From: khomenkooleksandr <167673981+khomenkooleksandr@users.noreply.github.com> Date: Wed, 8 Jan 2025 23:01:36 +0100 Subject: [PATCH 2/6] Create pull_request_template.md --- .github/pull_request_template.md | 7 +++++++ 1 file changed, 7 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 00000000..0e9e3b02 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,7 @@ +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 fe47f40dd498d77ad47c3e0d0a2cd2a4dae73c11 Mon Sep 17 00:00:00 2001 From: khomenkooleksandr <167673981+khomenkooleksandr@users.noreply.github.com> Date: Wed, 8 Jan 2025 23:04:39 +0100 Subject: [PATCH 3/6] Update pull_request_template.md --- .github/pull_request_template.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 0e9e3b02..378b862f 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,7 +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 +## 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 18fff38f7c24846ad07f9731e9b63f52db1179f8 Mon Sep 17 00:00:00 2001 From: khomenkooleksandr <167673981+khomenkooleksandr@users.noreply.github.com> Date: Wed, 8 Jan 2025 23:57:01 +0100 Subject: [PATCH 4/6] Update CODEOWNERS --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index c9686c63..c45d5353 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1,2 @@ @softservedata +Hello From a9875a4b8c666a83111768f2a2fb7694111bff02 Mon Sep 17 00:00:00 2001 From: khomenkooleksandr <167673981+khomenkooleksandr@users.noreply.github.com> Date: Thu, 9 Jan 2025 00:00:45 +0100 Subject: [PATCH 5/6] Update CODEOWNERS --- .github/CODEOWNERS | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index c45d5353..c9686c63 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1 @@ @softservedata -Hello From 8820e5a4fa28240a1817f8a421c904e0554f66c2 Mon Sep 17 00:00:00 2001 From: khomenkooleksandr <167673981+khomenkooleksandr@users.noreply.github.com> Date: Mon, 13 Jan 2025 20:03:06 +0100 Subject: [PATCH 6/6] Delete myprog.js --- myprog.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 myprog.js diff --git a/myprog.js b/myprog.js deleted file mode 100644 index bcf84960..00000000 --- a/myprog.js +++ /dev/null @@ -1,14 +0,0 @@ -function sumNumbers(a, b) { - return a + b; -} - -console.log("Вітаю! Ця програма обчислює суму двох чисел."); - -const number1 = parseFloat(prompt("Введіть перше число:")); -const number2 = parseFloat(prompt("Введіть друге число:")); - - -const result = sumNumbers(number1, number2); - -console.log(`Сума чисел ${number1} і ${number2} дорівнює ${result}.`); -alert(`Сума чисел ${number1} і ${number2} дорівнює ${result}.`);