Learning syntax of GitHub Workflow: Name, On, Jobs, Runs-on, Steps, Uses, Run


LearnAzureDevOps-O5

Learning syntax of GitHub Workflow: Name, On, Jobs, Runs-on, Steps, Uses, Run

Here’s a detailed breakdown of the standard workflow syntax elements in GitHub Actions.

1. name

Specifies the name of the workflow. This name appears in the GitHub Actions interface under the repository's "Actions" tab.

Optional:

If omitted, GitHub will assign a default name based on the filename.

Example:

2. on

Defines the events that trigger the workflow. These can be repository events like push, pull_request, scheduled intervals, or manual triggers.

Examples:

  • Trigger on a push event to the main branch:

  • Trigger on a pull request:

  • Trigger on a schedule (uses cron syntax):

  • Manual trigger:

3. jobs

Specifies the individual jobs to run in the workflow. Each job is a collection of steps that execute in a specified environment.

Example:

4. runs-on

Specifies the virtual environment (runner) where the job will execute.

Options:

  • ubuntu-latest: Ubuntu Linux

  • windows-latest: Windows

  • macos-latest: macOS

  • Self-hosted runners for custom environments.

Example:

5. steps

Defines the sequence of tasks (steps) within a job. Steps can run actions or custom shell commands.

Example:

6. uses

Specifies a reusable action to execute within a step. Actions are prebuilt tasks defined by the GitHub community or your repository.

Structure:

owner/repository@version

Example:

7. run

Specifies a shell command or script to execute within a step.

Example:

Full Example Combining All Elements

Summary

This workflow is triggered on pushes or pull requests to the main branch. It runs on an Ubuntu environment, checks out the code, sets up Node.js, installs dependencies, and runs tests.

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.