QuestionQ20
Author and manage workflowsAs a developer, you must add the correct syntax so the following workflow file can be triggered by multiple event types. Which two code blocks should you add beginning at line 5? (Each correct answer is a complete solution. Choose two.)

Choose two
- A on: [push, pull_request]
- B on:branches:- 'main'- 'dev'
- C on:schedule:- cron: '*/15 * * * *'initiate:- 'main'
- D on: [push, commit]
- E on:push:branches:- mainrelease:types:- created
- F on:env:- 'prod'- 'qa'- 'test'
Community Discussion