JLC Auto Sign #649
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: JLC Auto Sign | |
| on: | |
| schedule: | |
| - cron: '0 16,22,4,10 * * *' # 每 6 小时执行一次,UTC 时间 | |
| workflow_dispatch: | |
| jobs: | |
| sign: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Run Sign Script | |
| env: | |
| TOKEN_LIST: ${{ secrets.TOKEN_LIST }} | |
| SEND_KEY_LIST: ${{ secrets.SEND_KEY_LIST }} | |
| run: | | |
| python main.py |