Skip to content

Commit 823165e

Browse files
committed
2 parents 6c9831c + d2e5b41 commit 823165e

File tree

7 files changed

+143
-17
lines changed

7 files changed

+143
-17
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Bug 🐞
2+
description: Report a bug
3+
labels: [support, bug]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report! ☺️
9+
- type: textarea
10+
attributes:
11+
label: Steps to reproduce
12+
validations:
13+
required: true
14+
- type: textarea
15+
attributes:
16+
label: What is expected?
17+
validations:
18+
required: true
19+
- type: textarea
20+
attributes:
21+
label: What is actually happening?
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Additional data
27+
value: |
28+
<!-- If technical bug
29+
NodeJS Version:
30+
Package manager(npm|yarn|pnpm):
31+
Browser name & version:
32+
System:
33+
-->
34+
35+
<!-- If design file bug
36+
Technology(figma|sketch):
37+
-->

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Feature request ✨
2+
description: Suggest an idea or ask for a feature that you would like to have
3+
labels: [support, feature-req]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for letting us know how we can improve our product! ☺️
9+
- type: textarea
10+
attributes:
11+
label: What problem does this feature solve?
12+
validations:
13+
required: true
14+
- type: textarea
15+
attributes:
16+
label: What does the proposed solution look like?
17+
validations:
18+
required: true
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: 'Handle new issue comment'
2+
on:
3+
issue_comment:
4+
types: [created]
5+
6+
jobs:
7+
handle_new_issue_comment:
8+
runs-on: ubuntu-latest
9+
name: Handle new issue comment
10+
steps:
11+
- name: Toggle awaiting-reply label
12+
uses: jd-solanki/[email protected]
13+
with:
14+
label: awaiting-reply
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 'Handle new issue'
2+
on:
3+
issues:
4+
types: [opened]
5+
6+
jobs:
7+
handle_new_issue:
8+
runs-on: ubuntu-latest
9+
name: Handle new issue
10+
steps:
11+
- name: Find duplicates
12+
uses: wow-actions/[email protected]
13+
with:
14+
GITHUB_TOKEN: ${{ github.token }}
15+
label: duplicate
16+
comment: >
17+
Potential duplicates: {{#issues}}
18+
- #{{ number }} _({{ accuracy }}% Match)_
19+
{{/issues}}

.github/workflows/issue-staler.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v4
11+
with:
12+
stale-issue-message: 'This issue has been automatically marked as stale because it has no recent activity. It will be closed if no further activity occurs. Thank you for raising the concern.'
13+
close-issue-message: 'This issue has been automatically marked as closed because it has no recent activity.'
14+
stale-issue-label: 'stale'
15+
only-labels: 'awaiting-reply'
16+
exempt-issue-labels: 'triage'
17+
days-before-stale: 7
18+
days-before-close: 7

README.md

Lines changed: 36 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ Run a task with the specified environment(development/production) just execute t
133133

134134
## Documentation 📜
135135

136+
<!-- If you have docs in wiki then use below line -->
137+
138+
Check GitHub [Wiki](https://github.com/themeselection/sneat-bootstrap-html-admin-template-free/wiki) of this repository.
139+
136140
Check out our live [Documentation](https://themeselection.com/demo/sneat-bootstrap-html-admin-template/documentation/)
137141

138142
## Browser Support 🖥️
@@ -145,23 +149,6 @@ At present, we officially aim to support the last two versions of the following
145149
- Microsoft Edge (latest)
146150
- Opera (latest)
147151

148-
## Useful Links 🎁
149-
150-
- [Freebies](https://themeselection.com/item/category/freebies/)
151-
- [Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/)
152-
- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/)
153-
154-
## Support 👨‍💻
155-
156-
We use GitHub issues as support tickets to manage Item support.
157-
158-
1. In order to raise the GitHub issue, you must have a GitHub account. [Raise an Issue](https://github.com/themeselection/sneat-html-admin-template-free/issues)
159-
160-
## License ©
161-
162-
- Copyright © [ThemeSelection](https://themeselection.com/)
163-
- Licensed under [MIT](https://github.com/themeselection/sneat-html-admin-template-free/blob/master/LICENSE.md)
164-
165152
## Contributing 🦸
166153

167154
Contributions are always welcome and recommended! Here is how:
@@ -185,9 +172,41 @@ Contributions are always welcome and recommended! Here is how:
185172

186173
Please refer to the [CHANGELOG](https://github.com/themeselection/sneat-bootstrap-html-admin-template-free/blob/main/CHANGELOG.md) file. We will add detailed release notes to each new release.
187174

175+
## NOTE 🏷️
176+
177+
**We request you to keep ThemeSelection credit link in the footer section.**
178+
179+
## Looking For Premium Admin Templates ?? 👀
180+
181+
**[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use Free and Premium [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/), [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/), [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/), HTML Themes, and [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) to create your applications faster!.
182+
183+
If you want to [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/).
184+
185+
## Other variants
186+
187+
- [Laravel free variant](https://themeselection.com/item/sneat-free-bootstrap-html-laravel-admin-template/)
188+
<!-- Add others here -->
189+
188190
## Social Media 🌍
189191

190192
- Twitter : [https://twitter.com/Theme_Selection](https://twitter.com/Theme_Selection)
191193
- Facebook : [https://www.facebook.com/ThemeSelections/](https://www.facebook.com/ThemeSelections/)
192194
- Pinterest : [https://pinterest.com/themeselect/](https://pinterest.com/themeselect/)
193195
- Instagram : [https://www.instagram.com/themeselection/](https://www.instagram.com/themeselection/)
196+
197+
## Useful Links 🎁
198+
199+
- [Freebies](https://themeselection.com/item/category/freebies/)
200+
- [Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/)
201+
- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/)
202+
203+
## Support 👨‍💻
204+
205+
We use GitHub issues as support tickets to manage Item support.
206+
207+
1. In order to raise the GitHub issue, you must have a GitHub account. [Raise an Issue](https://github.com/themeselection/sneat-html-admin-template-free/issues)
208+
209+
## License ©
210+
211+
- Copyright © [ThemeSelection](https://themeselection.com/)
212+
- Licensed under [MIT](https://github.com/themeselection/sneat-html-admin-template-free/blob/master/LICENSE.md)

0 commit comments

Comments
 (0)