first-update
This commit is contained in:
40
easy-dataset-main/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
40
easy-dataset-main/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: '[Bug]'
|
||||
labels: bug
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
**注意:请务必按照此模版填写 ISSUES 信息,否则 ISSUE 将不会得到回复**
|
||||
|
||||
**问题描述**
|
||||
清晰、简洁地描述该问题的具体情况。
|
||||
|
||||
**桌面设备(请完善以下信息)**
|
||||
|
||||
- 操作系统:[例如:、Window、MAC]
|
||||
- 浏览器:[例如:谷歌浏览器(Chrome),苹果浏览器(Safari)]
|
||||
- Easy Dataset 版本:[例如:1.2.2]
|
||||
|
||||
**使用模型**
|
||||
|
||||
- 模型提供商:例如火山引擎
|
||||
- 模型名称:例如 DeepSeek R1
|
||||
|
||||
**复现步骤**
|
||||
重现该问题的操作步骤:
|
||||
|
||||
1. 进入“……”页面。
|
||||
2. 点击“……”。
|
||||
3. 向下滚动到“……”。
|
||||
4. 这时会看到错误提示。
|
||||
|
||||
**预期结果**
|
||||
清晰、简洁地描述你原本期望出现的情况。
|
||||
|
||||
**截图**
|
||||
如果有必要,请附上截图,以便更好地说明你的问题。
|
||||
|
||||
**其他相关信息**
|
||||
在此处添加关于该问题的其他任何相关背景信息。
|
||||
19
easy-dataset-main/.github/ISSUE_TEMPLATE/feature-or-enhancement-.md
vendored
Normal file
19
easy-dataset-main/.github/ISSUE_TEMPLATE/feature-or-enhancement-.md
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
name: 'Feature or enhancement '
|
||||
about: Suggest an idea for this project
|
||||
title: '[Feature]'
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
**你的功能请求是否与某个问题相关?请描述。**
|
||||
清晰、简洁地描述一下存在的问题是什么。例如:当我[具体情况]时,我总是感到很沮丧。
|
||||
|
||||
**描述你期望的解决方案**
|
||||
清晰、简洁地描述你希望实现的情况。
|
||||
|
||||
**描述你考虑过的替代方案**
|
||||
清晰、简洁地描述你所考虑过的任何其他解决方案或功能。
|
||||
|
||||
**其他相关信息**
|
||||
在此处添加与该功能请求相关的其他任何背景信息或截图。
|
||||
40
easy-dataset-main/.github/ISSUE_TEMPLATE/question.md
vendored
Normal file
40
easy-dataset-main/.github/ISSUE_TEMPLATE/question.md
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
---
|
||||
name: Question
|
||||
about: Ask questions you want to know
|
||||
title: '[Question]'
|
||||
labels: question
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
**注意:请务必按照此模版填写 ISSUES 信息,否则 ISSUE 将不会得到回复**
|
||||
|
||||
**问题描述**
|
||||
清晰、简洁地描述该问题的具体情况。
|
||||
|
||||
**桌面设备(请完善以下信息)**
|
||||
|
||||
- 操作系统:[例如:、Window、MAC]
|
||||
- 浏览器:[例如:谷歌浏览器(Chrome),苹果浏览器(Safari)]
|
||||
- Easy Dataset 版本:[例如:1.2.2]
|
||||
|
||||
**使用模型**
|
||||
|
||||
- 模型提供商:例如火山引擎
|
||||
- 模型名称:例如 DeepSeek R1
|
||||
|
||||
**复现步骤**
|
||||
重现该问题的操作步骤:
|
||||
|
||||
1. 进入“……”页面。
|
||||
2. 点击“……”。
|
||||
3. 向下滚动到“……”。
|
||||
4. 这时会看到错误提示。
|
||||
|
||||
**预期结果**
|
||||
清晰、简洁地描述你原本期望出现的情况。
|
||||
|
||||
**截图**
|
||||
如果有必要,请附上截图,以便更好地说明你的问题。
|
||||
|
||||
**其他相关信息**
|
||||
在此处添加关于该问题的其他任何相关背景信息。
|
||||
12
easy-dataset-main/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
12
easy-dataset-main/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
### 变更类型- [ ] 新功能(feat)
|
||||
|
||||
- [ ] 修复(fix)
|
||||
- [ ] 文档(docs)
|
||||
- [ ] 重构(refactor)
|
||||
|
||||
### 变更描述- 简要说明修改内容(关联Issue:#123)
|
||||
|
||||
### 文档更新- [ ] README.md
|
||||
|
||||
- [ ] 贡献指南
|
||||
- [ ] 接口文档(如有)
|
||||
48
easy-dataset-main/.github/workflows/docker-build.yml
vendored
Normal file
48
easy-dataset-main/.github/workflows/docker-build.yml
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
name: Build and Push Docker image on Tag
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
docker-image-release:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Log in to GitHub Container Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Extract metadata for Docker
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: ghcr.io/${{ github.repository_owner }}/easy-dataset
|
||||
tags: |
|
||||
type=ref,event=tag
|
||||
type=raw,value=latest,enable={{is_default_branch}}
|
||||
|
||||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
Reference in New Issue
Block a user