Check PR List #3320
This file contains 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: Check PR List | |
on: | |
schedule: | |
- cron: '0/15 * * * *' | |
workflow_dispatch: | |
jobs: | |
check-pcl: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 签出储存库 | |
uses: actions/checkout@v4 | |
- name: 运行更新脚本 | |
id: run_script | |
run: sh Actions/CheckPRList.sh | |
env: | |
PAT_TOKEN: ${{ secrets.PAT_TOKEN }} # 传递 PAT_TOKEN 环境变量 | |
GH_TOKEN: ${{ github.token }} # 设置 GitHub 自动生成的 GH_TOKEN |