File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Continuous integration (CI) triggers cause a pipeline to run whenever you push
2+ # an update to the specified branches or you push specified tags.
3+ trigger :
4+ batch : true
5+ branches :
6+ include :
7+ - develop
8+ paths :
9+ exclude :
10+ - README.md
11+
12+ # Pull request (PR) triggers cause a pipeline to run whenever a pull request is
13+ # opened with one of the specified target branches, or when updates are made to
14+ # such a pull request.
15+ #
16+ # GitHub creates a new ref when a pull request is created. The ref points to a
17+ # merge commit, which is the merged code between the source and target branches
18+ # of the pull request.
19+ #
20+ # Opt out of pull request validation
21+ pr : none
22+
23+ # By default, use self-hosted agents
24+ pool : Default
25+
26+ # Image tag name for Fuse projects
27+ # parameters:
28+ # - name: imagetag
29+ # displayName: Image tag to be built and/or deployed
30+ # type: string
31+ # default: latest
32+
33+ resources :
34+ repositories :
35+ # Azure DevOps repository
36+ - repository : helfi-redirector-pipelines
37+ type : git
38+ # Azure DevOps project/repository
39+ name : helfi-redirector/helfi-redirector-pipelines
40+
41+ extends :
42+ # Filename in Azure DevOps Repository (note possible -ui or -api)
43+ # Django example: azure-pipelines-PROJECTNAME-api-release.yml
44+ # Drupal example: azure-pipelines-drupal-release.yml
45+ template : build-helfi-redirector.yml@helfi-redirector
46+ # parameters:
47+ # imagetag: ${{ parameters.imagetag }}
You can’t perform that action at this time.
0 commit comments