Free Microsoft GH-200 Actual Exam Questions - Question 3 Discussion
It’s A for sure. Workflows have to be in .github/workflows/ because that’s where GitHub looks for them. B is for custom actions, which are different from workflows. C is wrong since you can’t just attach workflows in the UI – they need to be code files in a specific place. E isn’t an actual recognized folder, and D is definitely out since workflows won’t trigger if they’re scattered randomly. So, only A makes sense here.
B imo, since .github/actions/ is for custom actions, not workflows.
Not D, workflows can’t be just anywhere; GitHub won’t recognize them outside of the specific folder. A is correct since that’s the standard directory for triggering workflows.
Agree with A, workflows must be in .github/workflows/ to trigger events properly.
A vs E? I’m sticking with A because .github/workflows/ is the official spot GitHub Docs mention for workflows to run properly. E looks like it’s just made up or maybe a guess. B is for actions, not workflows, so that’s different. C and D don’t fit since workflows won’t work if saved anywhere or only through UI. So yeah, A feels right by how GitHub organizes stuff.
Maybe A, since workflows have to be in a dedicated folder, and the .github/workflows/ path is the common standard for triggering on repo events.
Option A because workflows need to be in a specific folder, not just anywhere.
It’s A since GitHub docs say workflows must be under .github/workflows/.
Probably A since that’s the known default path for GitHub workflows to run.
Maybe A since GitHub Actions expects workflows in a specific place, and B is for custom actions, not workflows themselves. D and E don’t match standard paths.
Not C, workflow files aren’t just linked through the UI—they need to be in the repo itself. So A makes more sense since that’s the standard folder for GitHub Actions workflows.
A, workflows must be in .github/workflows/ to activate properly.
Maybe D is out since the workflows need a specific place to be detected. B is for actions, so that’s not it. C sounds wrong because you can’t just attach a workflow through the UI without a file in the repo. E is close but missing the .github part which is pretty essential. So A makes the most sense since GitHub looks in .github/workflows/ to find these files and trigger events accordingly.
It’s A because workflows have to be in a specific path for GitHub to recognize them, not just anywhere, so D and E can’t be right. B is for actions, not workflows.
Makes sense that it’s A since GitHub docs always show .github/workflows/ as the folder. A
A, because the workflows folder is specifically meant for workflow files, not actions or other files.
Option A says .github/workflows/, but does it require a specific branch like main or can it be any branch?