mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 03:52:02 +02:00
I want to do what I did in https://github.com/certbot/certbot/pull/7733 to our Azure Pipelines setup, but unfortunately this isn't currently possible. The only filters available for service hooks for the "build completed" trigger are the pipeline and build status. See  To accomplish this, I propose splitting the "advanced" pipeline into two cases. One is for builds on protected branches where we want to be notified if they fail while the other is just used to manually run tests on certain branches.
14 lines
433 B
YAML
14 lines
433 B
YAML
# Release pipeline to build and deploy Certbot for Windows for GitHub release tags
|
|
trigger:
|
|
tags:
|
|
include:
|
|
- v*
|
|
pr: none
|
|
|
|
jobs:
|
|
# Any addition here should be reflected in the advanced and advanced-test pipelines.
|
|
# It is advised to declare all jobs here as templates to improve maintainability.
|
|
- template: templates/tests-suite.yml
|
|
- template: templates/installer-tests.yml
|
|
- template: templates/changelog.yml
|