Describing standard workflow syntax elements in Github


LearnAzureDevOps-O5

Describing standard workflow syntax elements in Github

GitHub Workflows are defined using YAML syntax and have a specific structure to automate tasks. Below are the standard syntax elements and their roles.

1. name

Defines the name of the workflow. This is optional but helps identify workflows in the GitHub Actions interface.

2. on

Specifies the events that trigger the workflow. Events can be repository activities, manual triggers, or scheduled runs.

Examples:

  • Trigger on a push event:

  • Trigger on a pull_request event:

  • Multiple events:

  • Scheduled triggers (cron syntax):

  • Manual triggers:

3. jobs

Defines one or more jobs that the workflow will execute. Jobs can run in parallel or sequentially based on dependencies.

Key Elements:

  • runs-on: Specifies the environment for the job (e.g., ubuntu-latest, windows-latest, macos-latest).

  • needs: Defines dependencies between jobs.

4. steps

Lists individual tasks within a job. Steps can use actions or custom shell commands.

Key Elements:

  • name: A descriptive name for the step.

  • uses: Specifies a prebuilt action to use.

  • run: Runs a shell command or script.

  • with: Provides input parameters for actions.

5. env

Sets environment variables for workflows, jobs, or steps.

Workflow-level:

Job-level:

Step-level:

6. outputs

Defines output values from jobs that can be used in other jobs.

7. defaults

Sets default values for run steps.

8. permissions

Specifies permissions for the workflow's access to the GitHub API.

9. secrets

Accesses sensitive information stored in the repository.

10. if

Adds conditional execution for jobs or steps.

11. strategy

Defines a matrix of configurations to test multiple environments or inputs.

12. timeout-minutes

Sets a timeout for a job.

Summary

These elements work together to create flexible and powerful workflows. You can customize them to fit the needs of your automation.

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.