Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable PR support #444

Merged
merged 1 commit into from
Sep 27, 2023
Merged
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
29 changes: 1 addition & 28 deletions azure-pipelines-build-master.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Continuous integration (CI) triggers cause a pipeline to run whenever you push
# an update to the specified branches or you push specified tags.
trigger:
batch: true
branches:
Expand All @@ -9,39 +7,14 @@ trigger:
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

# Image tag name for Fuse projects
#parameters:
#- name: imagetag
# displayName: Image tag to be built and/or deployed
# type: string
# default: latest

resources:
repositories:
# Azure DevOps repository
# Azure repository reference
- repository: kerrokantasi-pipelines
type: git
# Azure DevOps project/repository
name: kerrokantasi/kerrokantasi-pipelines

extends:
# Filename in Azure DevOps Repository (note possible -ui or -api)
# Django example: azure-pipelines-PROJECTNAME-api-release.yml
# Drupal example: azure-pipelines-drupal-release.yml
template: azure-pipelines-build-kerrokantasi-api-master.yml@kerrokantasi-pipelines
#parameters:
#imagetag: ${{ parameters.imagetag }}
18 changes: 18 additions & 0 deletions azure-pipelines-build-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
trigger: none

pr:
branches:
include:
- master

pool: Default

resources:
repositories:
# Azure repository reference
- repository: kerrokantasi-pipelines
type: git
name: kerrokantasi/kerrokantasi-pipelines

extends:
template: azure-pipelines-build-kerrokantasi-api-pr.yml@kerrokantasi-pipelines
Loading