Run And Trigger GitHub Workflow

1 · Gleb Bahmutov · April 15, 2023, 11:36 a.m.
Summary
If you finished reading my Trying GitHub Actions blog post, you might be thinking: what are all the ways I can run the same workflow? This blog post is the answer.Let's say you can to run a GitHub Actions workflow:on each pushed commit(s)periodically (every day for example)by manually calling it from the GitHub Actions pageby making an API call to GitHub APIMy example is very simple. I just want to greet the user..github/workflows/ci.yml123456789101112131415161718192021name: ci# run the workflow...