-
Notifications
You must be signed in to change notification settings - Fork 674
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
frankiejun
committed
Aug 13, 2024
1 parent
78ddba2
commit 35abe6c
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: 批量保活进程 | ||
|
||
on: | ||
schedule: | ||
# 使用cron表达式定义任务运行的时间 | ||
- cron: '*/10 * * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: 安装依赖 | ||
run: sudo apt-get install expect | ||
sudo apt-get intall jq | ||
|
||
- name: 登录各个serv00并执行保活脚本 | ||
env: | ||
HOST_JSON: ${{ secrets.HOST_JSON }} | ||
TELEGRAM_TOKEN: ${{secrets.TELEGRAM_TOKEN}} | ||
TELEGRAM_USERID: ${{secrets.TELEGRAM_USERID}} | ||
WXSENDKEY: ${{secrets.WXSENDKEY}} | ||
run: | | ||
chmod +x ./revive.sh | ||
./revive.sh |
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