From 1659c50f194dbfda8ebfde3315474c9637a51714 Mon Sep 17 00:00:00 2001 From: yeonns Date: Sun, 19 Mar 2023 15:52:01 +0900 Subject: [PATCH 1/5] docs: update readme --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 7ec39dc..2f3acb7 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,8 @@ This is a repository for practicing git and github features. ## Practice guide Check `Issues` and try them! + +- [Practice: git environment settings](https://github.com/yeonns/git-practice/issues/3) +- [Practice: fork and clone](https://github.com/yeonns/git-practice/issues/1) +- [Practice: remote repository management](https://github.com/yeonns/git-practice/issues/4) +- [Practice: commit and make PR](https://github.com/yeonns/git-practice/issues/2) \ No newline at end of file From b3e3bfa471e5f322ebb5a85b4529a705e33adb0c Mon Sep 17 00:00:00 2001 From: yeonns Date: Sun, 19 Mar 2023 16:16:38 +0900 Subject: [PATCH 2/5] docs: pr template --- .github/PULL_REQUEST_TEMPLATE.md | 16 ++++++++++++++++ 1 file changed, 16 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..6e10687 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,16 @@ +## PR Type + + +- [ ] bug +- [ ] test +- [ ] chore +- [ ] feature +- [ ] refactor +- [ ] documentation +- [ ] ci/cd + +## Description + \ No newline at end of file From 442d6260032aeaadb149ce8b0b16640411c72b59 Mon Sep 17 00:00:00 2001 From: yeonns Date: Sun, 19 Mar 2023 16:21:09 +0900 Subject: [PATCH 3/5] docs: codeowners --- .github/CODEOWNERS | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..7f91478 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,6 @@ +# All files in project +* @yeonns + +# Specific file type +*.md @yeonns + From 2f2c95ce70b0bb4679653af1cb49f4101ff025e3 Mon Sep 17 00:00:00 2001 From: yeonns Date: Sun, 19 Mar 2023 16:25:47 +0900 Subject: [PATCH 4/5] docs: issue template --- .github/ISSUE_TEMPLATE/bug-report.yaml | 73 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++ .github/ISSUE_TEMPLATE/docs-request.yaml | 24 +++++++ .github/ISSUE_TEMPLATE/feature-request.yaml | 43 ++++++++++++ 4 files changed, 145 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/docs-request.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml new file mode 100644 index 0000000..4a051ef --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -0,0 +1,73 @@ +name: 🐞 Bug +description: File a bug/issue +title: "[Bug] " +labels: "bug" + +body: +- type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues. + required: true + +- type: checkboxes + attributes: + label: Would you like to work on the issue? + description: Please tick this checkbox, if you want this issue assigned to you. + options: + - label: Assign this issue to me. + required: false + +- type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + validations: + required: true + +- type: textarea + attributes: + label: Expected Behavior + description: A clear and concise description of what you expected to happen. + validations: + required: false + +- type: textarea + attributes: + label: Environment + description: | + examples: + - **OS**: IOS + - **Broswer**: [Chrome, Safari] + - **Version**: 1.2 + value: | + - OS: + - Broswer: + - Version: + render: markdown + validations: + required: true + +- type: textarea + attributes: + label: Steps to reproduce + description: Steps to reproduce the behavior. + placeholder: | + 1. Go to ... + 2. Click on ... + 3. Scroll down to '...' + 4. See error... + validations: + required: true +- type: textarea + attributes: + label: Anything else? + description: | + Links? References? Add any other context about the problem here! + validations: + required: false +- type: markdown + attributes: + value: "## Screenshots! If applicable, add screenshots to help explain your problem" \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..0ff5c15 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Ask a question + url: https://github.com/yeonns/git-practice/discussions + about: Ask questions and discuss with other contributors \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/docs-request.yaml b/.github/ISSUE_TEMPLATE/docs-request.yaml new file mode 100644 index 0000000..79f8db6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/docs-request.yaml @@ -0,0 +1,24 @@ +name: '📚 Documentation' +description: A request to update or improve euphony-hub-collector documentation +title: "[Documentation] <title>" +labels: "documentation" + +body: + - type: textarea + attributes: + label: What is the improvement or update you wish to see? + description: 'Ex. I want more detailed explanation of project setup.' + validations: + required: true + - type: textarea + attributes: + label: Is there any context that might help us understand? + description: A clear description of any added context that might help us understand. + validations: + required: true + - type: input + attributes: + label: Does the docs page already exist? Please link to it. + description: 'Ex. https://github.com/yeonns/git-practice/README.md' + validations: + required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml new file mode 100644 index 0000000..44adcde --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yaml @@ -0,0 +1,43 @@ +name: "💡 Feature Request" +description: Request an idea for this project +title: "[Request] <title>" +labels: "feature proposal" +body: + - type: checkboxes + attributes: + label: Does the feature exist in the most recent commit? + options: + - label: It doesn't exist. + - type: textarea + attributes: + label: Describe the proposal + description: A clear and concise description of what you want to happen. + placeholder : | + Ex. I want the solution like [...] + validations: + required: true + - type: textarea + attributes: + label: Why do we need this feature? + description: A clear and concise description of what the problem is. + placeholder : | + Ex. I'm always frustrated when [...] + validations: + required: true + - type: textarea + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + placeholder : | + Ex. I want to extend the function A by adding someting more + validations: + required: true + - type: textarea + attributes: + label: Anything else? + description: Add any other context or screenshots about the feature request here. + placeholder : | + context, screenshots, related links , etc. + validations: + required: false + \ No newline at end of file From 959c92012ce79515de65f7ad2002312a6a241c05 Mon Sep 17 00:00:00 2001 From: taeinkim <uutaein@gmail.com> Date: Fri, 7 Apr 2023 11:23:33 +0900 Subject: [PATCH 5/5] feat:about-me/uutaein info --- about-me/uutaein.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 about-me/uutaein.md diff --git a/about-me/uutaein.md b/about-me/uutaein.md new file mode 100644 index 0000000..0392e63 --- /dev/null +++ b/about-me/uutaein.md @@ -0,0 +1,2 @@ +* name : taein kim +* github : https://github.com/uutaein \ No newline at end of file