Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions azure-pipelines-devtest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# File: kerrokantasi/azure-pipelines-devtest.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:
- main

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: kerrokantasi-pipelines
type: git
# project/repository
name: kerrokantasi/kerrokantasi-pipelines

extends:
template: azure-pipelines-kerrokantasi-api-devtest.yml@kerrokantasi-pipelines
37 changes: 37 additions & 0 deletions azure-pipelines-stageprod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# File: kerrokantasi/azure-pipelines.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:
- main

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: kerrokantasi-pipelines
type: git
# project/repository
name: kerrokantasi/kerrokantasi-pipelines

extends:
template: azure-pipelines-kerrokantasi-api-stageprod.yml@kerrokantasi-pipelines