破損した「cron」gh-actionワークフロー

破損した「cron」gh-actionワークフロー

練習として、次のGitHub Actionsワークフローを作成しました。

name: Cron CI

# Controls when the workflow will run
on:
  # Triggers the workflow every day minutes
  schedule:
    - cron: "01 10 * * 6,7"
    - cron: "01 10 * * 1,2,3,4,5"

# 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 "cron"
  cron:
    # 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:
      # Runs a single command using the runners shell
      - name: Run working script

        if: github.event.schedule != '01 10 * * 1,2,3,4,5'
        run: echo "Wake up! Grab a brush and put a little makeup"

      - name: Run resting script
        if: github.event.schedule != '01 10 * * 1,2,3,4,5'
        run: echo "It's not time to make a change! Just relax, take it easy."

私はビューには適しているようですが、エラーログが表示されますinvalid cron attribute "01 10 * * 6,7"。このエラーを理解するのに役立ちますか?

[1]https://github.com/trouchet/sappio/actions/runs/3807658008/workflow

ベストアンサー1

次のように修正しました。

  1. 開始番号を削除します0
  2. 0代わりに日曜日として使用してください7

今大丈夫!

おすすめ記事