Refer to the exhibit. You have this GitHub Actions workflow YAML. The workflow does not trigger when you push to the main branch. What is the most likely issue?
GitHub Actions uses 'on' to define events.
Why this answer
Option B is correct. The 'triggers' keyword is incorrect. In GitHub Actions, the correct keyword is 'on'.
The workflow should use 'on: push: branches: [main]' instead of 'triggers'. Option A is incorrect because the push event is valid. Option C is not the issue.
Option D is not the cause.