diff --git a/.github/workflows/AllUp.yml b/.github/workflows/AllUp.yml index 1b68edd..6a499cf 100644 --- a/.github/workflows/AllUp.yml +++ b/.github/workflows/AllUp.yml @@ -1,8 +1,6 @@ name: AllUp on: - push: - branches: [main] pull_request: types: - opened diff --git a/README.md b/README.md index 0d935e1..60da884 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # AllUp-Satwiki -![Python: 3.11 | 3.12](https://img.shields.io/badge/Python-3.11%20%7C%203.12-python?style=social&logo=python&logoColor=blue) ![License: Apache-2.0](https://img.shields.io/github/license/yusancky/AllUp-Satwiki?style=social) +![Python: 3.11 | 3.12 | 3.13](https://img.shields.io/badge/Python-3.11%20%7C%203.12%20%7C%203.13-python?style=social&logo=python&logoColor=blue) ![License: Apache-2.0](https://img.shields.io/github/license/yusancky/AllUp-Satwiki?style=social) AllUp 项目是由 [雨伞CKY](https://github.com/yusancky) 维护的、自动化爬取并集合数据以便动态更新的项目。AllUp 项目的数据将于每日北京时间 9 时 26 分爬取数据并修改。[^1] @@ -14,4 +14,4 @@ AllUp 项目是由 [雨伞CKY](https://github.com/yusancky) 维护的、自动 请前往 [贡献文档](/.github/CONTRIBUTING.md) 查看贡献相关内容。 -[^1]: 定时进行任务基于 GitHub Action 的 `schedule` 事件。但 `schedule` 事件在 Actions 工作流运行期间负载过高时可能会延迟。据以往经历,一般延迟在 50 分钟左右。 +[^1]: 定时进行任务基于 GitHub Action 的 `schedule` 事件。但 `schedule` 事件在 Actions 工作流运行期间负载过高时可能会延迟。据以往经历,一般延迟在 30 分钟至 45 分钟。 \ No newline at end of file diff --git a/main.py b/main.py index d7664fc..f3f23f0 100644 --- a/main.py +++ b/main.py @@ -42,5 +42,5 @@ def make(id): AllUp_data = {'switch_key': '1'} for dataset in ['t'] + [str(i + 1) for i in range(2)] + ['#default']: AllUp_data[dataset] = make(dataset) - AllUp_content = f"{AllUp_utils.wikitext.build_switch(AllUp_data)}[[Category:模板]]{{{{documentation}}}}" + AllUp_content = f'{AllUp_utils.wikitext.build_switch(AllUp_data)}[[Category:模板]]{{{{documentation}}}}' AllUp_utils.wiki.push('模板:AllUp','MAIN',AllUp_content) \ No newline at end of file