From the course: GitHub Actions for CI/CD

Unlock the full course today

Join today to access over 24,900 courses taught by industry experts.

GitHub Actions review

GitHub Actions review - GitHub Tutorial

From the course: GitHub Actions for CI/CD

GitHub Actions review

- [Instructor] GitHub Actions is an automation framework that integrates seamlessly with code stored in a GitHub repository. You can use Actions to automate many parts of the software development lifecycle including continuous integration and deployment. Just to make sure we're on the same page, let's review some keywords that you need to know. We'll start with the workflow. Workflows define how all of the automation in a process is tied together including how the process gets started. For a workflow to be recognized by GitHub Actions, it must be stored inside your repo in the .GitHub/workflows directory. Workflows are also coded using YAML syntax. Events are the triggers that start a workflow. Triggers can be just about anything that happens while you're using GitHub, pushes to a repo, new pull requests, new issues, and so on. Workflows can even be triggered by manual events in the web interface. Honestly…

Contents