Skip to content

Instantly share code, notes, and snippets.

@xgqfrms
Created November 26, 2021 07:26
Show Gist options
  • Save xgqfrms/ec53c4c74fb1d60a172c329bcaff9a45 to your computer and use it in GitHub Desktop.
Save xgqfrms/ec53c4c74fb1d60a172c329bcaff9a45 to your computer and use it in GitHub Desktop.
github 定时任务 时间不准确 bug

github 定时任务 时间不准确 bug

@xgqfrms
Copy link
Author

xgqfrms commented Nov 26, 2021

github 定时任务 时间不准确 bug

# This is a basic workflow to help you get started with Actions

name: WX_ROBOT

# Controls when the action will run. 
on:
  # Triggers the workflow on push events but only for the main branch
  push:
    branches: [ main ]
  schedule:
    - cron: '00 00-16/1 * * *'

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  # This workflow contains a single job called "build"
  hello-job:
    # The type of runner that the job will run on
    runs-on: ubuntu-latest

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
      - uses: actions/checkout@v2

      # Runs a single command using the runners shell
      - name: Run a one-line script
        run: echo Hello, world!
  

@xgqfrms
Copy link
Author

xgqfrms commented Nov 26, 2021

⏰ 2021-11-26 14:25:39
🎉读书会快捷链接
📘阅读打卡链接
👨🏻‍💻我的链接
💰积分链接
读书会机器人🤖️ features:
1. 大大简化进入打卡的流程,跳过 3s 首页的推荐;
2. 每天早晚两次打卡提醒(08:00 和 20:00) ⏰,降低忘记打卡的风险;
⏰ 2021-11-26 15:20:10
🎉读书会快捷链接
📘阅读打卡链接
👨🏻‍💻我的链接
💰积分链接
读书会机器人🤖️ features:
1. 大大简化进入打卡的流程,跳过 3s 首页的推荐;
2. 每天早晚两次打卡提醒(08:00 和 20:00) ⏰,降低忘记打卡的风险;

@xgqfrms
Copy link
Author

xgqfrms commented Nov 26, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment