In Azure Pipelines, what is the typical behavior when a pipeline is configured to trigger on a pull request?
Think about how pipelines help keep code quality before merging.
Azure Pipelines automatically runs builds and tests on pull requests to ensure changes are safe before merging.
In Azure Pipelines architecture, which component actually executes the build or deployment jobs?
Consider what runs the commands defined in the pipeline.
Agents are machines or containers that run the jobs defined in Azure Pipelines.
Which method is the best practice to securely store and use secrets like passwords or tokens in Azure Pipelines?
Think about centralized secret management services.
Azure Key Vault integration allows secure storage and retrieval of secrets without exposing them in code or pipeline files.
For large projects with multiple teams, what is a recommended practice regarding pipeline YAML files?
Think about avoiding repetition and managing complexity.
Templates allow sharing common steps and reduce duplication, making pipelines easier to maintain.
In an Azure Pipeline YAML file, what happens if you set trigger: none?
trigger: none
Consider what disabling triggers means for automation.
Setting trigger: none disables automatic runs on code changes; the pipeline must be started manually or by other triggers.