github-actions

Github Actions - trigger another action after one action is competed

怎甘沉沦 提交于 2020-08-26 07:13:21
问题 I have one action (a yaml file) for deploying a docker image to Google Cloud Run. I would like to receive Slack or Email messages informing the build and push results. How could the message action be triggered after build action is completed? Is it possible to get the result of the build action? 回答1: First, you are mixing terms here. According to GitHub Actions documentation a single YAML file is called a workflow (not an action) and consists of jobs . Jobs contain a sequence of steps