Skip to content

Commit

Permalink
👷
Browse files Browse the repository at this point in the history
  • Loading branch information
tkgs0 committed Aug 29, 2024
1 parent fd274ee commit 7e5c9bb
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ body:
- type: markdown
attributes:
value: |
在提 issue 前请确保你仔细阅读过文档,搜索过现有的 issue ,并确保你使用的是最新的 asmr-spider。
在提 issue 前请确保你仔细阅读过文档,搜索过现有的 issue ,并确保你使用的是最新的 asmr-spider
在启动本项目出现错误时,你可以无视堆栈 (stack) 相关的信息,但错误信息 (Error: xxxxx) 请认真看看,自己稍微翻译翻译就知道大体意思,大部分问题你都可以在本项目文档或搜索引擎中找到解答。
Expand Down Expand Up @@ -63,7 +63,7 @@ body:
- type: input
attributes:
label: 操作系统
placeholder: 你所使用的操作系统以及系统版本
placeholder: 你所使用的操作系统以及其版本
validations:
required: true

Expand Down Expand Up @@ -128,7 +128,7 @@ body:
label: 额外补充
description: |
在此处添加相关的任何其他上下文或截图,或者您觉得有帮助的信息。
- 问题相关截图,例如机器人回复异常时的聊天截图
- 问题相关截图
- 可能与 bug 有关的配置内容
validations:
required: false
14 changes: 12 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@
"dependencyDashboard": false,
"rangeStrategy": "bump",
"enabledManagers": [
"github-actions",
"poetry",
"github-actions"
"pre-commit"
],
"pre-commit": {
"enabled": true
},
"packageRules": [
{
"matchPackagePatterns": [
Expand Down Expand Up @@ -36,6 +40,12 @@
"dependencies",
"breaking"
]
},
{
"description": "disable python updates for poetry manager",
"matchPackageNames": ["python"],
"matchManagers": ["poetry"],
"enabled": false
}
]
}
}
14 changes: 6 additions & 8 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,21 @@
name: Publish Python 🐍 distributions 📦 to PyPI

on:
release:
types: [published]

permissions:
contents: read
push:
tags:
- '*'

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 7e5c9bb

Please sign in to comment.