diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index b399063..1cce9ec 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -3,8 +3,8 @@ on: push: # 触发机制为push操作 branches: main schedule: # 触发机制为定时任务 - - cron: "44 4 * * *" # 每天4点44分自动执行 - - cron: "44 16 * * *" # 每天16点44分自动执行 + - cron: "28 04 * * *" # 每天北京时间12点28分自动执行 + - cron: "37 16 * * *" # 每天北京时间0点37分自动执行 jobs: autosend: runs-on: ubuntu-latest # 运行环境为最新的Ubuntu diff --git a/config/index.js b/config/index.js deleted file mode 100644 index 65224b8..0000000 --- a/config/index.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - username: process.env.TEXTNOW_USERNAME || "", - password: process.env.TEXTNOW_PASSWORD || "", - recipient: process.env.TEXTNOW_RECIPIENT || "(726) 666-0002", - message: process.env.TEXTNOW_MESSAGE || "autosend message", -};