How do you trigger a build automatically after code check-in? Answer: Add a trigger section in your YAML file, or use the GUI option “Enable continuous integration.” Example (YAML): trigger: branches: include: - main - develop Every push to main or develop automatically triggers a build. You can also trigger manually or from a pull request.
How do you trigger a build automatically after code check-in?
Answer:
Add a trigger section in your YAML file, or use the GUI option “Enable continuous
integration.”
Example (YAML):
trigger:
branches:
include:
- main
- develop
Every push to main or develop automatically triggers a build.
You can also trigger manually or from a pull request.