forked from City-of-Helsinki/apartment-application-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines-release.yml
More file actions
37 lines (32 loc) · 1.07 KB
/
Copy pathazure-pipelines-release.yml
File metadata and controls
37 lines (32 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File: apartment-application-service/azure-pipelines-release.yml
# Continuous integration (CI) triggers cause a pipeline to run whenever you push
# an update to the specified branches or you push specified tags.
trigger:
branches:
include:
- release/*
- refs/tags/*
paths:
exclude:
- README.md
# Pull request (PR) triggers cause a pipeline to run whenever a pull request is
# opened with one of the specified target branches, or when updates are made to
# such a pull request.
#
# GitHub creates a new ref when a pull request is created. The ref points to a
# merge commit, which is the merged code between the source and target branches
# of the pull request.
#
# Opt out of pull request validation
pr: none
# By default, use self-hosted agents
pool: Default
resources:
repositories:
# Azure DevOps repository
- repository: asuntotuotanto-django-pipelines
type: git
# project/repository
name: asuntotuotanto/asuntotuotanto-django-pipelines
extends:
template: azure-pipelines-asuntotuotanto-django-release.yml@asuntotuotanto-django-pipelines