Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to trigger GitHub action manually and on schedule but the following code produces and error

name: Update data

on: 
   workflow_dispatch
   schedule:
     - cron: "0 5 */30 * *"

I'm searching for the solution how to do it correctly and have both options.

question from:https://stackoverflow.com/questions/66059857/trigger-github-action-manually-and-on-schedule

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
759 views
Welcome To Ask or Share your Answers For Others

1 Answer

you need a colon after workflow_dispatch.

name: Update data

on: 
   workflow_dispatch:
   schedule:
     - cron: "0 5 */30 * *"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...