-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5edb740
commit ed77b75
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: "\U0001F41E Bug report" | ||
description: Report an issue with ronna-codegen | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
感谢您花时间填写此错误报告 (Thanks for taking the time to fill out this bug report) | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: 描述问题 (Describe the problem) | ||
placeholder: 请描述您的问题 (Please describe your problem) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction-steps | ||
attributes: | ||
label: 如何复现该问题 (How to reproduce the problem) | ||
placeholder: 请提供复现问题的具体操作步骤,以便平台快速定位、高效地解决问题。当然如果问题的操作步骤较复杂,您可以fork平台,然后去改动代码复现问题,这样更高效 (Please provide specific steps to reproduce the problem, so that the platform can quickly locate and solve the problem efficiently. Of course, if the operation steps of the problem are more complicated, you can fork the platform, and then modify the code to reproduce the problem, which is more efficient) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: system-info | ||
attributes: | ||
label: 操作系统和浏览器信息 (Operating system and browser information) | ||
placeholder: 如果您遇到操作系统或浏览器兼容性问题,可选填此项 (Optional if you encounter operating system or browser compatibility issues) | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: checkboxes | ||
attributes: | ||
label: 验证 (Verify) | ||
description: 在提交问题之前,请确保您执行以下操作 (Before submitting an issue, please ensure you do the following) | ||
options: | ||
- label: 是否仔细阅读过 [文档](https://ronnaces.gitee.io/ronna-codegen-doc /) (Have you read [documentation](https://ronnaces.gitee.io/ronna-codegen-doc /) carefully) | ||
required: true | ||
- label: 检查是否存在相同或类似的问题 [issues](https://github.com/ronna-codegen/issues) (Check for the same or similar [issues](https://github.com/ronna-codegen/issues)) | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# 通过 Github action, 在仓库的每一次 commit 后自动同步到 Gitee 上 | ||
name: Mirror the Github organization repos to Gitee | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
repo-sync: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@main | ||
with: | ||
persist-credentials: false | ||
- name: Mirror the Github organization repos to Gitee. | ||
uses: Yikun/hub-mirror-action@master | ||
with: | ||
# 必选,需要同步的 Github 这里记住选择的是仓库 或者账号 而不是具体的项目 | ||
src: github/ronnaces | ||
# 必选,需要同步到的 Gitee 这里记住选择的是仓库 或者账号 而不是具体的项目 | ||
dst: gitee/ronnaces | ||
# 必选,Gitee公钥对应的私钥,https://gitee.com/profile/sshkeys | ||
dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} | ||
# 必选,Gitee对应的用于创建仓库的token,https://gitee.com/profile/personal_access_tokens | ||
dst_token: ${{ secrets.GITEE_ACCESS_TOKEN }} | ||
# 如果是组织,指定组织即可,默认为用户 user | ||
account_type: org | ||
# 需要同步的仓库里面的项目 | ||
static_list: "ronna-codegen" |