Update Packages #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Packages | |
| # 每天北京时间 03:00 与 13:00 定时 + 手动触发: | |
| # 由公共可重用工作流查 registry 最新版,bump Packages/manifest.json 并直推 main | |
| on: | |
| schedule: | |
| - cron: "0 19 * * *" # 北京时间 03:00 | |
| - cron: "0 5 * * *" # 北京时间 13:00 | |
| workflow_dispatch: | |
| jobs: | |
| update-packages: | |
| # 引用外部仓库的可重用工作流 | |
| # 权限由外部工作流统一配置,无需在调用方声明 | |
| uses: GameFrameX/public-github-actions/.github/workflows/update-packages.yml@main | |
| # 组织级别已配置密钥,可以使用 inherit 继承所有密钥 | |
| secrets: inherit |