From bd8c68187511e4bb7fc5e3ff7d29a0c5a56f5213 Mon Sep 17 00:00:00 2001 From: FahimFBA Date: Fri, 25 Oct 2024 12:28:44 +0600 Subject: [PATCH 1/5] =?UTF-8?q?=E2=9C=A8=20Add=20bug=20report=20template?= =?UTF-8?q?=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adding a bug report template for creating clear bug reports to help improve the project. --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 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..ff4f2e4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '[BUG] write a suitable title' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. Windows, Linux, MacOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. \ No newline at end of file From 8a37e262ce8a87178b29193c63ca0a826cb5ff01 Mon Sep 17 00:00:00 2001 From: FahimFBA Date: Fri, 25 Oct 2024 12:29:29 +0600 Subject: [PATCH 2/5] =?UTF-8?q?=E2=9C=A8=20[FEAT]=20Add=20feature=20reques?= =?UTF-8?q?t=20template=20in=20.github=20folder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++++++++ 1 file changed, 20 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..badb894 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '[FEAT] write a suitable 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. + +**Additional context** +Add any other context or screenshots about the feature request here. \ No newline at end of file From 6dbc325ce5544c4dc88c64748312072cba7e5ca7 Mon Sep 17 00:00:00 2001 From: FahimFBA Date: Fri, 25 Oct 2024 12:29:51 +0600 Subject: [PATCH 3/5] =?UTF-8?q?=E2=9C=A8=20Add=20new=20issue=20template=20?= =?UTF-8?q?for=20category=20Other.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/other.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/other.md diff --git a/.github/ISSUE_TEMPLATE/other.md b/.github/ISSUE_TEMPLATE/other.md new file mode 100644 index 0000000..9bea4cb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/other.md @@ -0,0 +1,10 @@ +--- +name: Other +about: Category that is not available yet +title: "[Other] write a suitable title" +labels: '' +assignees: '' + +--- + +Give a description of the problem/anything that you need to inform us. \ No newline at end of file From b5b0007f8dcc063069760bacfd5f45bcda3cd72e Mon Sep 17 00:00:00 2001 From: FahimFBA Date: Fri, 25 Oct 2024 12:31:42 +0600 Subject: [PATCH 4/5] =?UTF-8?q?=E2=9C=A8=20Add=20greetings=20workflow=20fo?= =?UTF-8?q?r=20pull=20requests=20and=20issues=20=F0=9F=8C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/greetings.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..c26233a --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Thank you for creating this issue. We will get back as soon as possible.' + pr-message: 'Thank you for your contribution! We will get back to you with proper feedback as soon as possible!' \ No newline at end of file From 30216ee6e178e2013a65fe2b4bcf38626998b7eb Mon Sep 17 00:00:00 2001 From: FahimFBA Date: Fri, 25 Oct 2024 12:32:56 +0600 Subject: [PATCH 5/5] =?UTF-8?q?=E2=9C=A8=20Add=20GitHub=20Action=20to=20ma?= =?UTF-8?q?rk=20stale=20issues=20and=20pull=20requests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/stale.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..d74448f --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,22 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: '34 7 * * *' + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This issue is marked as stale as no activity has occured for a long time.' + stale-pr-message: 'This pull request is marked as stale as no activity has occured for a long time.' + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity' \ No newline at end of file