Update bug_report template with yml

This commit is contained in:
Ömer Faruk Özdemir 2022-02-23 15:33:36 +03:00
parent e24b63ac4a
commit 4564ba04f2
2 changed files with 42 additions and 29 deletions

View File

@ -1,29 +0,0 @@
---
name: Bug report
about: Create a report to help us improve
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
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Device information (please complete the following information):**
- OS: [e.g. Windows or iOS]
- Browser [e.g. chrome, safari]
- Gradio version [e.g. 2.5.1]
**Additional context**
Add any other context about the problem here.

42
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View File

@ -0,0 +1,42 @@
name: gradio-ui
on:
push:
branches:
- "master"
paths:
- "ui/**"
pull_request:
paths:
- "ui/**"
defaults:
run:
working-directory: ./ui
concurrency:
group: deploy-${{ github.ref }}-${{ github.event_name == 'push' || github.event.inputs.fire != null }}
cancel-in-progress: true
jobs:
check:
name: static checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm i -g pnpm@6
- uses: actions/setup-node@v2
with:
node-version: 16
- name: install dependencies
run: pnpm i --frozen-lockfile
- name: formatting check
run: pnpm format:check
- name: typecheck
run: pnpm ts:check
continue-on-error: true
- name: unit tests
run: pnpm test:run
- name: build
run: pnpm build