GitHub Actions: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * GitHub Concepts * Continuous Integration =Overview=") |
|||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=External= | |||
* https://github.com/features/actions | |||
* https://docs.github.com/en/actions | |||
=Internal= | =Internal= | ||
* [[GitHub_Concepts#Actions|GitHub Concepts]] | * [[GitHub_Concepts#Actions|GitHub Concepts]] | ||
* [[Continuous_Integration#Tools|Continuous Integration]] | * [[Continuous_Integration#Tools|Continuous Integration]] | ||
=Overview= | =Overview= | ||
GitHub Actions is a continuous integration and continuous delivery (CI/CD) platform that allows you to automate your build, test, and deployment pipeline. Individual actions are event driven YAML-defined entities: you can run a series of commands in response to a specific event that happens in the repository. These YAML files are stored in the repository in a directory called <code>.github/workflows</code>. An event automatically triggers a workflow, which contains a job. The job uses steps to control the order in which actions are run. | |||
=TODO= | |||
https://docs.github.com/en/actions/learn-github-actions |
Latest revision as of 22:54, 27 October 2022
External
Internal
Overview
GitHub Actions is a continuous integration and continuous delivery (CI/CD) platform that allows you to automate your build, test, and deployment pipeline. Individual actions are event driven YAML-defined entities: you can run a series of commands in response to a specific event that happens in the repository. These YAML files are stored in the repository in a directory called .github/workflows
. An event automatically triggers a workflow, which contains a job. The job uses steps to control the order in which actions are run.