mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-14 21:52:56 +08:00
Compare commits
2 Commits
062ee545b1
...
5a5e9ae5c7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a5e9ae5c7 | ||
|
|
a327f1adaa |
3
.github/workflows/codeql.yml
vendored
3
.github/workflows/codeql.yml
vendored
@ -45,12 +45,9 @@ jobs:
|
|||||||
include:
|
include:
|
||||||
- language: python
|
- language: python
|
||||||
build-mode: none
|
build-mode: none
|
||||||
- language: javascript-typescript
|
|
||||||
build-mode: none
|
|
||||||
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
|
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
|
||||||
# Use `c-cpp` to analyze code written in C, C++ or both
|
# Use `c-cpp` to analyze code written in C, C++ or both
|
||||||
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
|
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
|
||||||
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
|
|
||||||
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
|
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
|
||||||
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
|
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
|
||||||
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
|
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
|
||||||
|
|||||||
@ -49,7 +49,9 @@ async def _():
|
|||||||
async def _prune_stale_tags():
|
async def _prune_stale_tags():
|
||||||
deleted_count = await tag_manager.prune_stale_group_links()
|
deleted_count = await tag_manager.prune_stale_group_links()
|
||||||
if deleted_count > 0:
|
if deleted_count > 0:
|
||||||
logger.info(f"定时任务:成功清理了 {deleted_count} 个无效的群组标签"
|
logger.info(
|
||||||
f"关联。", "群组标签管理")
|
f"定时任务:成功清理了 {deleted_count} 个无效的群组标签" f"关联。",
|
||||||
|
"群组标签管理",
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
logger.debug("定时任务:未发现无效的群组标签关联。", "群组标签管理")
|
logger.debug("定时任务:未发现无效的群组标签关联。", "群组标签管理")
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user