Hi there, I’d like to ask how can I set up workflow_run to trigger when I push tag to a repo.
I have 3 workflows: tests, deploy and push client
- tests.yml runs tests
- deploy.yml deploys my code to a server and starts it
- push clients generate http clients (ts, python) and pushes them to their repos
I would like to chain them in style:
- tests runs always
- deploy and push runs only if tests completed successfully and tag was pushed
Is that possible with workflow_run event or should I do it in other way?
p.s. I dont know really if I’m doing “right” or “wrong” - I’ve just decided to push by tags so any good advices on general topic are welcome