UX consistancy changes.

This commit is contained in:
2026-04-16 18:41:01 -07:00
parent 8ff071c69b
commit 7545441a3e
675 changed files with 70964 additions and 593 deletions

View File

@@ -0,0 +1,37 @@
name: Bug 🐞
description: Report a bug
labels: [support, bug]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report! ☺️
- type: textarea
attributes:
label: Steps to reproduce
validations:
required: true
- type: textarea
attributes:
label: What is expected?
validations:
required: true
- type: textarea
attributes:
label: What is actually happening?
validations:
required: true
- type: textarea
attributes:
label: Additional data
value: |
<!-- If technical bug
NodeJS Version:
Package manager(npm|yarn|pnpm):
Browser name & version:
System:
-->
<!-- If design file bug
Technology(figma|sketch):
-->

View File

@@ -0,0 +1 @@
blank_issues_enabled: false

View File

@@ -0,0 +1,18 @@
name: Feature request ✨
description: Suggest an idea or ask for a feature that you would like to have
labels: [support, feature-req]
body:
- type: markdown
attributes:
value: |
Thanks for letting us know how we can improve our product! ☺️
- type: textarea
attributes:
label: What problem does this feature solve?
validations:
required: true
- type: textarea
attributes:
label: What does the proposed solution look like?
validations:
required: true

View File

@@ -0,0 +1,51 @@
name: 🚀 Deploy Demo
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: ⚙️ Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: ⚙️ Set BRAND_NAME environment variable from repo name
run: echo BRAND_NAME=${{ github.event.repository.name }} | cut -d '-' -f1 >> $GITHUB_ENV
- name: ⬇️ Clone current repo under /<brand-name>/vue-free
uses: actions/checkout@v4
with:
path: ${{ env.BRAND_NAME }}/vue-free
- name: ⬇️ Clone automation scripts repo under /automation-scripts
uses: actions/checkout@v4
with:
repository: themeselection/automation-scripts
token: ${{ secrets.GH_PAT }}
path: automation-scripts
- name: ⬇️ Install packages in automation-scripts dir
working-directory: automation-scripts/vue
run: pnpm install
- name: ⚙️ Prepare free demo
working-directory: automation-scripts/vue
run: pnpm tsx src/templates/${{ env.BRAND_NAME }}/scripts/prepareVueFreeDemo.ts
- name: 📦 Generate demo
working-directory: ${{ env.BRAND_NAME }}/vue-free/typescript-version
run: pnpm i && pnpm build --base=/${{ env.BRAND_NAME }}-vuetify-vuejs-admin-template-free/demo/
- name: 🚀 Upload demo
uses: appleboy/scp-action@master
with:
HOST: ${{ secrets.HOST }}
USERNAME: ${{ secrets.USERNAME }}
PORT: ${{ secrets.PORT }}
KEY: ${{ secrets.SSHKEY }}
source: ${{ env.BRAND_NAME }}/vue-free/typescript-version/dist
target: ${{ secrets.PROD_DIR }}/demo
rm: true
strip_components: 4

View 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-solanki/gh-action-toggle-awaiting-reply-label@v2.1.0
with:
label: awaiting-reply

View 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}}

View 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 it has no 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 no recent activity.'
stale-issue-label: 'stale'
only-labels: 'awaiting-reply'
exempt-issue-labels: 'triage'
days-before-stale: 7
days-before-close: 7