Skip to content

Github Actions Ci Cd Recipes

Master Github Actions Ci Cd Recipes with 120 free flashcards. Study using spaced repetition and focus mode for effective learning in Devops.

🎓 120 cards ⏱️ ~60 min Advanced
Study Full Deck →
Share: 𝕏 Twitter LinkedIn WhatsApp

🎯 What You'll Learn

Preview Questions

12 shown

What is GitHub Actions?

Show ▼

A CI/CD and workflow automation platform built into GitHub that runs jobs in response to repository events using YAML-defined workflows stored in .github/workflows/.

What file extension do GitHub Actions workflow files use?

Show ▼

.yaml or .yml, stored under .github/workflows/ in the repository.

What is a workflow in GitHub Actions?

Show ▼

An automated, configurable process defined by a YAML file that runs one or more jobs and is triggered by events.

What is a job in GitHub Actions?

Show ▼

A set of steps in a workflow that execute on the same runner; jobs run in parallel by default unless dependencies are declared with needs:.

What is a step in GitHub Actions?

Show ▼

An individual task within a job, either a shell command (run:) or an invocation of an action (uses:).

What is a runner in GitHub Actions?

Show ▼

The server that executes a workflow job; can be GitHub-hosted (Ubuntu, Windows, macOS) or self-hosted.

What are the two categories of runners GitHub provides by default?

Show ▼

GitHub-hosted runners (managed by GitHub) and self-hosted runners (you manage).

What on clause is required to start a workflow block?

Show ▼

on: — it lists the events that trigger the workflow.

Name three events that can trigger a workflow.

Show ▼

push, pull_request, and workflow_dispatch are common triggers.

What does workflow_dispatch do?

Show ▼

Allows a workflow to be triggered manually from the Actions tab, the REST API, or the CLI.

What does on: schedule allow?

Show ▼

Runs a workflow on a cron schedule using POSIX cron syntax evaluated against UTC.

Give an example of a cron expression that runs daily at 02:30 UTC.

Show ▼

on: schedule: - cron: '30 2 * * *'

🎓 Start studying Github Actions Ci Cd Recipes

🎮 Study Modes Available

🔄

Flashcards

Flip to reveal

🧠

Focus Mode

Spaced repetition

Multiple Choice

Test your knowledge

⌨️

Type Answer

Active recall

📚

Learn Mode

Multi-round mastery

🎯

Match Game

Memory challenge

Related Topics in Devops

📖 Learning Resources