in Technology by
What are the components of GitHub Actions?

1 Answer

0 votes
by

You can configure a GitHub Actions workflow to be triggered when an event occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more jobs which can run in sequential order or in parallel. Each job will run inside its own virtual machine runner, or inside a container, and has one or more steps that either run a script that you define or run an action, which is a reusable extension that can simplify your workflow.

Workflows

A workflow is a configurable automated process that will run one or more jobs. Workflows are defined by a YAML file checked in to your repository and will run when triggered by an event in your repository, or they can be triggered manually, or at a defined schedule.

Workflows are defined in the .github/workflows directory in a repository, and a repository can have multiple workflows, each of which can perform a different set of tasks. For example, you can have one workflow to build and test pull requests, another workflow to deploy your application every time a release is created, and still another workflow that adds a label every time someone opens a new issue.

You can reference a workflow within another workflow. For more information.

Events

An event is a specific activity in a repository that triggers a workflow run. For example, activity can originate from GitHub when someone creates a pull request, opens an issue, or pushes a commit to a repository. You can also trigger a workflow to run on a schedule, by posting to a REST API, or manually.

Jobs

A job is a set of steps in a workflow that is executed on the same runner. Each step is either a shell script that will be executed, or an action that will be run. Steps are executed in order and are dependent on each other. Since each step is executed on the same runner, you can share data from one step to another. For example, you can have a step that builds your application followed by a step that tests the application that was built.

You can configure a job's dependencies with other jobs; by default, jobs have no dependencies and run in parallel with each other. When a job takes a dependency on another job, it will wait for the dependent job to complete before it can run. For example, you may have multiple build jobs for different architectures that have no dependencies, and a packaging job that is dependent on those jobs. The build jobs will run in parallel, and when they have all completed successfully, the packaging job will run.

Actions

An action is a custom application for the GitHub Actions platform that performs a complex but frequently repeated task. Use an action to help reduce the amount of repetitive code that you write in your workflow files. An action can pull your git repository from GitHub, set up the correct toolchain for your build environment, or set up the authentication to your cloud provider.

You can write your own actions, or you can find actions to use in your workflows in the GitHub Marketplace.

Runners

A runner is a server that runs your workflows when they're triggered. Each runner can run a single job at a time. GitHub provides Ubuntu Linux, Microsoft Windows, and macOS runners to run your workflows; each workflow run executes in a fresh, newly-provisioned virtual machine. GitHub also offers larger runners, which are available in larger configurations.  If you need a different operating system or require a specific hardware configuration, you can host your own runners.

Related questions

0 votes
    What is GitHub Actions?...
asked Apr 1, 2023 in Technology by JackTerrance
0 votes
    What are the actions that happen when a DataNode fails?...
asked Aug 6, 2021 in Technology by JackTerrance
0 votes
    What are the actions in the workflow in SalesForce?...
asked Nov 12, 2020 in Technology by JackTerrance
0 votes
    Which are the three types of actions in QTP?...
asked Oct 19, 2020 in Technology by JackTerrance
0 votes
    Delete the branch starfeature in GitHub. Which channel would receive notification for this event? A. Stakeholders and ... . Stakeholders C. Starprojectteam D. None of the options...
asked Dec 23, 2022 in Technology by JackTerrance
0 votes
    Merge the Pull request in GitHub for the updates made to starfeature branch. Which channel would receive notification ... . Stakeholders C. Starprojectteam D. None of the options...
asked Dec 23, 2022 in Technology by JackTerrance
0 votes
    How will you differentiate between Git and GitHub?...
asked Nov 4, 2020 in Technology by JackTerrance
0 votes
    How do you push a file from your local system to the GitHub repository using Git?...
asked Oct 4, 2020 in Technology by Editorial Staff
0 votes
    What is the git command that downloads any repository from GitHub to your computer?...
asked Oct 4, 2020 in Technology by Editorial Staff
0 votes
    How to use filters to target specific branches or tags for push events in GitHub Actions?...
asked Jun 19, 2023 in Technology by JackTerrance
0 votes
    How to use filters to target specific branches for pull request events in Github Actions?...
asked Jun 19, 2023 in Technology by JackTerrance
0 votes
    How to use events activity types in github Actions?...
asked Jun 19, 2023 in Technology by JackTerrance
0 votes
    How to automatically trigger GitHub Actions workflows?...
asked Jun 19, 2023 in Technology by JackTerrance
0 votes
    How to use release management for your custom Github actions?...
asked Jun 17, 2023 in Technology by JackTerrance
0 votes
    Explain about the GitHub Actions?...
asked Jun 17, 2023 in Technology by JackTerrance
...