From 0f318e8f2a9a0d67a002713add6fdc3d3540e196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Taner=20=C5=9Eener?= Date: Mon, 8 Mar 2021 18:57:07 +0000 Subject: [PATCH 1/4] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 43 ++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..7595bb9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,43 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Description** +A clear and concise description of what the bug is. + +**Expected behavior** +What you expected to happen. + +**Current behavior** +What happened. + +**To Reproduce** +Steps to reproduce the behaviour. + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Logs** +Post logs here or paste them to [Ghostbin](https://ghostbin.co) and insert the link here. + +**Environment** + +- Platform: [e.g. Android/iOS/macOS/tvOS] +- Architecture: [arm-v7a, arm-v7a-neon, arm64-v8a, x86, x86_64, armv7, armv7s, arm64, arm64-mac-catalyst, arm64-simulator, arm64e, i386, x86-64, x86-64-mac-catalyst ] +- Version (if applicable) [e.g. v4.4] +- Source branch (if applicable) [e.g. master, development, v4.4] +- Xcode version (if applicable) [e.g. 7.3.1, 9.0.1, 12.0] +- Cocoapods version (if applicable) [e.g. 1.9.1] +- Android Studio version (if applicable) [e.g. 4.0] +- Android NDK version (if applicable) [e.g. 16b, r17c, r21d] + +**Other** +Add any other context about the problem here. From c2a7dd7261874df15fdaac42e0a5a7aed38fbb95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Taner=20=C5=9Eener?= Date: Sat, 20 Mar 2021 14:11:23 +0000 Subject: [PATCH 2/4] Update issue templates --- .github/ISSUE_TEMPLATE/feature_request.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..ba7a00e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,23 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Platform** +Is this a general feature for all platforms or a platform specific feature? + +**Additional context** +Add any other context or screenshots about the feature request here. From acd1d25b3d46ddfc5887dc47f7a4f8d5e331ee78 Mon Sep 17 00:00:00 2001 From: Taner Sener Date: Sat, 20 Mar 2021 15:19:01 +0000 Subject: [PATCH 3/4] add pull request template --- .github/ISSUE_TEMPLATE/issue-template.md | 36 ------------------------ .github/pull_request_template.md | 18 ++++++++++++ 2 files changed, 18 insertions(+), 36 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/issue-template.md create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/issue-template.md b/.github/ISSUE_TEMPLATE/issue-template.md deleted file mode 100644 index 0e52d04..0000000 --- a/.github/ISSUE_TEMPLATE/issue-template.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -name: Issue Template about: Create an issue to help us improve - ---- - -**Description** -Description of what the issue is about. - -**Expected behavior** -What you expected to happen. - -**Current behavior** -What happened. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Logs** -Post logs here or paste them to [Ghostbin](https://ghostbin.co) and insert the link here. - -**Environment** - -- Platform: [e.g. Android/iOS/macOS/tvOS] -- - -Architecture: [arm-v7a, arm-v7a-neon, arm64-v8a, x86, x86_64, armv7, armv7s, arm64, arm64-mac-catalyst, arm64-simulator, arm64e, i386, x86-64, x86-64-mac-catalyst ] - -- Version (if applicable) [e.g. v4.3] -- Source branch (if applicable) [e.g. master, development, v4.3] -- Xcode version (if applicable) [e.g. 7.3.1, 9.0.1, 14.3] -- Cocoapods version (if applicable) [e.g. 1.9.1] -- Android Studio version (if applicable) [e.g. 4.0] -- Android NDK version (if applicable) [e.g. 16b, r17c, r21d] - -**Other** -Add any other context about the problem here. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..8d9077e --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,18 @@ +## Description +Describe the change and/or the issue fixed in this pull request. +Please also include the context and motivation about the changes introduced. + +## Type of Change +- New feature +- Bug fix +- Documentation + +## Checks +- [ ] Changes support all platforms (`Android`, `iOS`, `macOS`, `tvOS`) +- [ ] Breaks existing functionality +- [ ] Implementation is completed, not half-done +- [ ] Is there another PR already created for this feature/bug fix + +## Tests +How are these changes verified? Please provide test instructions. +Also list any relevant details about your test configuration. \ No newline at end of file From 46afc3f34a91efffb3c2bc595d64e2d714d48245 Mon Sep 17 00:00:00 2001 From: Taner Sener Date: Sat, 20 Mar 2021 15:30:27 +0000 Subject: [PATCH 4/4] update stale action options --- .github/workflows/stale.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index eaed1e8..c723fcd 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -17,3 +17,6 @@ jobs: stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' stale-issue-label: 'no-issue-activity' stale-pr-label: 'no-pr-activity' + exempt-issue-labels: 'enhancement' + exempt-pr-labels: 'enhancement' + exempt-all-assignees: ''