init
This commit is contained in:
14
.github/workflows/handle-new-issue-comment.yml
vendored
Normal file
14
.github/workflows/handle-new-issue-comment.yml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
name: 'Handle new issue comment'
|
||||
on:
|
||||
issue_comment:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
handle_new_issue_comment:
|
||||
runs-on: ubuntu-latest
|
||||
name: Handle new issue comment
|
||||
steps:
|
||||
- name: Toggle awaiting-reply label
|
||||
uses: jd-0001/gh-action-toggle-awaiting-reply-label@v2.0.0
|
||||
with:
|
||||
label: awaiting-reply
|
||||
19
.github/workflows/handle-new-issue.yml
vendored
Normal file
19
.github/workflows/handle-new-issue.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
name: 'Handle new issue'
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
|
||||
jobs:
|
||||
handle_new_issue:
|
||||
runs-on: ubuntu-latest
|
||||
name: Handle new issue
|
||||
steps:
|
||||
- name: Find duplicates
|
||||
uses: wow-actions/potential-duplicates@v1.0.8
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
label: duplicate
|
||||
comment: >
|
||||
Potential duplicates: {{#issues}}
|
||||
- #{{ number }} _({{ accuracy }}% Match)_
|
||||
{{/issues}}
|
||||
18
.github/workflows/issue-staler.yml
vendored
Normal file
18
.github/workflows/issue-staler.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
name: 'Close stale issues and PRs'
|
||||
on:
|
||||
schedule:
|
||||
- cron: '30 1 * * *'
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v4
|
||||
with:
|
||||
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.'
|
||||
close-issue-message: 'This issue has been automatically marked as closed because it has not had recent activity.'
|
||||
stale-issue-label: 'stale'
|
||||
only-labels: 'awaiting-reply'
|
||||
exempt-issue-labels: 'triage'
|
||||
days-before-stale: 7
|
||||
days-before-close: 7
|
||||
77
README.md
Normal file
77
README.md
Normal file
@@ -0,0 +1,77 @@
|
||||
<p align="center"></p>
|
||||
|
||||
<p align="center">
|
||||
<a href="{ts_product_page_url}" target="_blank">
|
||||
<img src="{svg_logo_url_from_current_repo}" alt="{template_name}-logo" width="60px" height="auto">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<h1 align="center">
|
||||
<a href="{ts_product_page_url}" target="_blank" align="center">
|
||||
{template_name}
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<p align="center">{template_punchline}</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="{licence_url_of_current_repo}">
|
||||
<img src="https://img.shields.io/github/license/themeselection/{repo_name_from_url}" alt="license">
|
||||
</a>
|
||||
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/workflow/status/themeselection/{repo_name_from_url}/Deploy">
|
||||
<a href="{repo_url}/releases">
|
||||
<img src="https://img.shields.io/github/release/themeselection/{repo_name_from_url}.svg" alt="GitHub release">
|
||||
</a>
|
||||
<a href="https://twitter.com/Theme_Selection" target="_blank">
|
||||
<img alt="Twitter Follow" src="https://img.shields.io/twitter/follow/Theme_Selection">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<kbd>[]({ts_product_page_url})</kbd>
|
||||
|
||||
## Introduction 🚀
|
||||
|
||||
{introduction}
|
||||
|
||||
[View Demo]({direct_demo_url__NOT_PRODUCT_PAGE_URL})
|
||||
|
||||
## Installation ⚒️
|
||||
|
||||
{installation steps}
|
||||
|
||||
## What's Included 📦
|
||||
|
||||
{template_includes}
|
||||
|
||||
## What's in Premium Version 💎
|
||||
|
||||
| {template_single_word_name} Free Version | {template_single_word_name} Premium Version |
|
||||
| ----------------------------------------------- | :------------------------------------------------ |
|
||||
| [Demo]({direct_demo_url__NOT_PRODUCT_PAGE_URL}) | [Demo]({product_landing_page_url}) |
|
||||
| [Download]({ts_product_page_url}) | [Purchase]({ts_product_page_url}) |
|
||||
| Single vertical menu | Vertical (+ vertical collapsed) & Horizontal menu |
|
||||
|
||||
## Documentation 📜
|
||||
|
||||
<!-- If you have docs in wiki then use below line -->
|
||||
|
||||
Check GitHub [Wiki]({repo_url}/wiki) of this repo
|
||||
|
||||
<!-- If you have live docs then use below line -->
|
||||
|
||||
Check out our live [Documentation]({live_docs_link})
|
||||
|
||||
## Browser Support 🖥️
|
||||
|
||||
{note_and_list_of_supported_browsers}
|
||||
|
||||
## Other variants
|
||||
|
||||
- [Vue variant]({free_vue_version_link})
|
||||
<!-- Add others here -->
|
||||
|
||||
## Useful Links 🎁
|
||||
|
||||
- [Freebies](https://themeselection.com/products/category/download-free-admin-templates/)
|
||||
- [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/)
|
||||
- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/)
|
||||
Reference in New Issue
Block a user