25 lines
723 B
YAML
25 lines
723 B
YAML
# 👁️ TianYen Dispatch
|
||
# NOTE: 此文件由 Agent PR 创建,可能需要手动合并(SkyEye R5 限制)
|
||
name: 👁️ TianYen Dispatch
|
||
on:
|
||
schedule:
|
||
- cron: '0 */4 * * *'
|
||
workflow_dispatch:
|
||
permissions:
|
||
contents: write
|
||
actions: write
|
||
jobs:
|
||
dispatch:
|
||
runs-on: ubuntu-latest
|
||
steps:
|
||
- uses: actions/checkout@v4
|
||
- name: TianYen Bulletin Dispatch
|
||
run: node scripts/tianyen/bulletin-dispatcher.js
|
||
- name: Commit
|
||
run: |
|
||
git config user.name "天眼 (TIANYEN)"
|
||
git config user.email "tianyen@guanghulab.com"
|
||
git add -A
|
||
git diff --cached --quiet || git commit -m "👁️ TianYen: bulletin dispatch"
|
||
git push || true
|