Skip to content

Commit 5ae83ea

Browse files
committed
init
0 parents  commit 5ae83ea

File tree

4 files changed

+128
-0
lines changed

4 files changed

+128
-0
lines changed
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-0001/[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 its has not had 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 not had 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: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<p align="center"></p>
2+
3+
<p align="center">
4+
<a href="{ts_product_page_url}" target="_blank">
5+
<img src="{svg_logo_url_from_current_repo}" alt="{template_name}-logo" width="60px" height="auto">
6+
</a>
7+
</p>
8+
9+
<h1 align="center">
10+
<a href="{ts_product_page_url}" target="_blank" align="center">
11+
{template_name}
12+
</a>
13+
</h1>
14+
15+
<p align="center">{template_punchline}</p>
16+
17+
<p align="center">
18+
<a href="{licence_url_of_current_repo}">
19+
<img src="https://img.shields.io/github/license/themeselection/{repo_name_from_url}" alt="license">
20+
</a>
21+
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/workflow/status/themeselection/{repo_name_from_url}/Deploy">
22+
<a href="{repo_url}/releases">
23+
<img src="https://img.shields.io/github/release/themeselection/{repo_name_from_url}.svg" alt="GitHub release">
24+
</a>
25+
<a href="https://twitter.com/Theme_Selection" target="_blank">
26+
<img alt="Twitter Follow" src="https://img.shields.io/twitter/follow/Theme_Selection">
27+
</a>
28+
</p>
29+
30+
<kbd>[![Materio - Vuetify VueJS Free Admin Template Demo Screenshot]({product_url})]({ts_product_page_url})</kbd>
31+
32+
## Introduction 🚀
33+
34+
{introduction}
35+
36+
[View Demo]({direct_demo_url__NOT_PRODUCT_PAGE_URL})
37+
38+
## Installation ⚒️
39+
40+
{installation steps}
41+
42+
## What's Included 📦
43+
44+
{template_includes}
45+
46+
## What's in Premium Version 💎
47+
48+
| {template_single_word_name} Free Version | {template_single_word_name} Premium Version |
49+
| ----------------------------------------------- | :------------------------------------------------ |
50+
| [Demo]({direct_demo_url__NOT_PRODUCT_PAGE_URL}) | [Demo]({product_landing_page_url}) |
51+
| [Download]({ts_product_page_url}) | [Purchase]({ts_product_page_url}) |
52+
| Single vertical menu | Vertical (+ vertical collapsed) & Horizontal menu |
53+
54+
## Documentation 📜
55+
56+
<!-- If you have docs in wiki then use below line -->
57+
58+
Check GitHub [Wiki]({repo_url}/wiki) of this repo
59+
60+
<!-- If you have live docs then use below line -->
61+
62+
Check out our live [Documentation]({live_docs_link})
63+
64+
## Browser Support 🖥️
65+
66+
{note_and_list_of_supported_browsers}
67+
68+
## Other variants
69+
70+
- [Vue variant]({free_vue_version_link})
71+
<!-- Add others here -->
72+
73+
## Useful Links 🎁
74+
75+
- [Freebies](https://themeselection.com/products/category/download-free-admin-templates/)
76+
- [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/)
77+
- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/)

0 commit comments

Comments
 (0)