Merge branch 'main' into 3.0-dev

This commit is contained in:
EstrellaXD
2023-06-29 20:33:50 +08:00
3 changed files with 185 additions and 5 deletions

View File

@@ -9,13 +9,12 @@ body:
attributes:
value: |
一份提案(RFC)定位为 **「在某功能/重构的具体开发前,用于开发者间 review 技术设计/方案的文档」**
目的是让协作的开发者间清晰的知道「要做什么」和「具体会怎么做」,
目的是让协作的开发者间清晰的知道「要做什么」和「具体会怎么做」,以及所有的开发者都能公开透明的参与讨论;
以便评估和讨论产生的影响 (遗漏的考虑、向后兼容性、与现有功能的冲突)
因此提案侧重在对解决问题的 **方案、设计、步骤** 的描述上。
如果仅希望讨论是否添加或
改进某功能本身,请使用 -> [Issue: 功能改进](https://github.com/EstrellaXD/Auto_Bangumi/issues/new?labels=feature+request&template=feature_request.yml&title=%5BFeature+Request%5D+)
如果仅希望讨论是否添加或改进某功能本身,请使用 -> [Issue: 功能改进](https://github.com/EstrellaXD/Auto_Bangumi/issues/new?labels=feature+request&template=feature_request.yml&title=%5BFeature+Request%5D+)
- type: textarea
id: background
attributes:

View File

@@ -12,7 +12,8 @@ jobs:
runs-on: ubuntu-latest
if: >
github.event.pull_request.merged == true &&
github.event.pull_request.base.ref == 'main'
github.event.pull_request.base.ref == 'main' &&
github.event.pull_request.title =~ '^v(\d+\.\d+\.\d+)$'
steps:
- name: Checkout code
uses: actions/checkout@v2