Available Number of Questions: Maximum of
72 Questions
Exam Name: GitHub Actions Exam
Exam Duration: 120 Minutes
Related Certification(s):
Microsoft GitHub Certification
Microsoft GH-200 Exam Topics - You’ll Be Tested in Actual Exam
When you study GitHub Actions for the GH 200 exam, think in terms of four practical skills that connect day to day automation with governance. Author and maintain workflows by understanding how events trigger runs, how jobs and steps execute on runners, and how to use expressions, contexts, and secrets safely. You should be comfortable with environment variables, artifacts, caching, and controlling execution with conditions and job dependencies. Consuming workflows means you can reuse approved automation through workflow calls, pass inputs, inherit or map secrets, and pin versions so behavior stays predictable over time. You also need to judge when reuse is appropriate and how to debug failures by reading logs, rerunning jobs, and narrowing down which step changed. Author and maintain actions by knowing the difference between composite, JavaScript, and container actions, how metadata defines inputs and outputs, and why versioning and tagging matter for stability and supply chain safety. Finally, manage GitHub Actions in the enterprise by setting policies for which actions can run, configuring runner groups and permissions, controlling access to secrets, and using auditing and usage insights to balance security, cost, and reliability. Taken together, these topics help you design automation that is reusable, secure, and maintainable at scale.
Microsoft GH-200 Exam Short Quiz
Attempt this Microsoft GH-200 exam quiz to self-assess your preparation for the actual Microsoft GitHub Actions Exam . CertBoosters also provides premium Microsoft GH-200 exam questions to pass the Microsoft GitHub Actions Exam in the shortest possible time. Be sure to try our free practice exam software for the Microsoft GH-200 exam.
1of 0 questions |
Microsoft GH-200 Exam Quiz
✓ 0 answered
🔖 0 bookmarked
MicrosoftGH-200
Q1:
When reviewing an action for use, what file defines its available inputs and outputs?
○
Ainputs.yml
○
Bconfig.json
○
Cdefaults.json
○
Dworkflow.yml
○
Eaction.yml
MicrosoftGH-200
Q2:
As a developer, you are designing a workflow and need to communicate with the runner machine to set environment variables, output values used by other actions, add debug messages to the output logs, and other tasks. Which of the following options should you use?
○
Aenvironment variables
○
Bworkflow commands
○
Cself-hosted runners
○
Denable debug logging
E composite run step
MicrosoftGH-200
Q3:
Disabling a workflow allows you to stop a workflow from being triggered without having to delete the file from the repo. In which scenarios would temporarily disabling a workflow be most useful? (Choose two.)
☐
AA workflow sends requests to a service that is down.
☐
BA workflow error produces too many, or wrong, requests, impacting external services negatively.
☐
CA workflow is configured to run on self-hosted runners
☐
DA workflow needs to be changed from running on a schedule to a manual trigger
☐
EA runner needs to have diagnostic logging enabled.
MicrosoftGH-200
Q4:
Which syntax correctly accesses a job output (output1) of an upstream job (job1) from a dependent job within a workflow?
○
A${{needs.job1.outputs.output1}}
○
B${{needs.job1.output1}}
○
C${{depends.job1.output1}}
○
D${{job1.outputs.output1}}
MicrosoftGH-200
Q5:
As a developer, you have a 10-MB data set that is required in a specific workflow. Which steps should you perform so the dataset is stored encrypted and can be decrypted during the workflow? (Choose three.)
☐
AEncrypt the dataset.
☐
BLeverage the actions/download-secret action in the workflow.
☐
CStore the dataset in a GitHub encrypted secret.
☐
DStore the encryption keys in a GitHub encrypted secret.
☐
ECompress the dataset
☐
FCommit the encrypted dataset to the same repository as the workflow
☐
GCreate a GitHub encrypted secret with the Large object option selected and upload the dataset.