diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 5d882c4dfb..e41c721820 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -7,18 +7,23 @@ assignees: '' --- +
+ Note ( 特别注意, 点击展开 ) + ### Note ( 特别注意 ) : > 1. 请先**搜索**, 并**确认**现有的 [Issues](https://github.com/hugegraph/hugegraph/issues) 与 [FAQ](https://hugegraph.github.io/hugegraph-doc/guides/faq.html) 中没有与您相同 / 相关的问题, 请勿重复提交 > 2. 我们需要尽可能**详细**的信息来**复现**问题, 越详细的信息 (包括**日志 / 截图 / 配置**等) 会**越快**被响应和处理 -> 3. 请关注提交的 issue, 缺乏信息 / 长时间 ( > 14 天) 没有回复, issue 可能会被 **关闭** (需要时可再开启) +> 3. Issue 标题请保持原有模板`[分类]`, 长段描述之间可以增加空行或使用`序号`标记, 保持排版清晰 +> 4. 请关注提交的 issue, 缺乏信息 / 长时间 ( > 14 天) 没有回复, issue 可能会被 **关闭** (更新时会再开启) +
## Environment ( 环境信息 - 必填 ) - **Server Version**: v0.11.x (refer [here](https://hugegraph.github.io/hugegraph-doc/clients/restful-api/other.html)) - **Backend**: Cassandra 3.x, x nodes, HDD or SSD - **OS**: xx CPUs, xx G RAM, Centos 7.x -- **Data Size**: xx vertices, xx edges (like 1000W 点, 9000W 边) +- **Data Size**: xx vertices, xx edges ## Expected behavior ( 期望表现 ) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 5907bb9efc..3fc8d9dead 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,4 @@ -blank_issues_enabled: true +blank_issues_enabled: false # 设置提 issue 前的参考文档 contact_links: diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 9f639f1f50..7dfb49c656 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -6,6 +6,6 @@ labels: 'feature' assignees: '' --- -## Feature Description: +## Feature Description: -xxx +请简要描述新功能 / 需求的使用场景或上下文, 最好能给个具体的例子说明 diff --git a/.github/ISSUE_TEMPLATE/question_ask.md b/.github/ISSUE_TEMPLATE/question_ask.md index 84acd90517..190aee6d32 100644 --- a/.github/ISSUE_TEMPLATE/question_ask.md +++ b/.github/ISSUE_TEMPLATE/question_ask.md @@ -7,18 +7,23 @@ assignees: '' --- +
+ Note ( 特别注意, 点击展开 ) + ### Note ( 特别注意 ) : > 1. 请先**搜索**, 并**确认**现有的 [Issues](https://github.com/hugegraph/hugegraph/issues) 与 [FAQ](https://hugegraph.github.io/hugegraph-doc/guides/faq.html) 中没有与您相同 / 相关的问题, 请勿重复提交 > 2. 我们需要尽可能**详细**的信息来**分析**问题, 越详细的信息 (包括**日志 / 截图 / 配置**等) 会**越快**被响应和处理 -> 3. 请关注提交的 issue, 缺乏信息 / 长时间 ( > 14 天) 没有回复, issue 可能会被 **关闭** (需要时可再开启) +> 3. Issue 标题请保持原有模板`[分类]`, 长段描述之间可以增加空行或使用`序号`标记, 保持排版清晰 +> 4. 请关注提交的 issue, 缺乏信息 / 长时间 ( > 14 天) 没有回复, issue 可能会被 **关闭** (更新时会再开启) +
## Environment ( 环境信息 - 必填 ) - **Server Version**: v0.11.x (refer [here](https://hugegraph.github.io/hugegraph-doc/clients/restful-api/other.html)) - **Backend**: Cassandra 3.x, x nodes, HDD or SSD - **OS**: xx CPUs, xx G RAM, Centos 7.x -- **Data Size**: xx vertices, xx edges (like 1000W 点, 9000W 边) +- **Data Size**: xx vertices, xx edges ## Your Question ( 问题描述 ) @@ -28,7 +33,7 @@ xxx ### Related information ( 补充相关信息 ) :
- Provide related "Data & Schema" info (Click to expand) + Related "Data & Schema" info ( Click to expand ) ### Vertex/Edge example ( 问题点 / 边数据举例 ) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000000..521829bf87 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,36 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "0 21 * * *" + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'Due to the lack of activity, the current issue is marked as stale and will be closed after 20 days, any update will remove the stale label' + stale-pr-message: 'Due to the lack of activity, the current pr is marked as stale and will be closed after 180 days, any update will remove the stale label' + stale-issue-label: 'inactive' + stale-pr-label: 'inactive' + exempt-issue-labels: 'feature,bug,enhancement,improvement,wontfix,todo' + + days-before-issue-stale: 15 + days-before-issue-close: 20 + days-before-pr-stale: 30 + days-before-pr-close: 180 + operations-per-run: 25 + start-date: '2020-12-01T00:00:00Z' + + exempt-all-assignees: true + remove-stale-when-updated: true + exempt-all-pr-milestones: true + delete-branch: false + enable-statistics: true