From c14c793c160f4c9ef4f09dad4775cee4b9716154 Mon Sep 17 00:00:00 2001 From: TautvydasGustas1 <39690430+TautvydasGustas1@users.noreply.github.com> Date: Tue, 10 Aug 2021 11:05:08 +0300 Subject: [PATCH 1/2] Add files via upload --- azure-pipelines-master.yml | 36 ++++++++++++++++++++++++++++++++++++ azure-pipelines-release.yml | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 azure-pipelines-master.yml create mode 100644 azure-pipelines-release.yml diff --git a/azure-pipelines-master.yml b/azure-pipelines-master.yml new file mode 100644 index 00000000..0ba9c8d2 --- /dev/null +++ b/azure-pipelines-master.yml @@ -0,0 +1,36 @@ +# File: drupal-helfi/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: + - dev + 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: strategia-talous-pipelines + type: git + # project/repository + name: strategia-talous/strategia-talous-pipelines + +extends: + template: azure-pipelines-drupal-master.yml@strategia-talous-pipelines diff --git a/azure-pipelines-release.yml b/azure-pipelines-release.yml new file mode 100644 index 00000000..36fab5fb --- /dev/null +++ b/azure-pipelines-release.yml @@ -0,0 +1,36 @@ +# File: drupal-helfi/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: strategia-talous-pipelines + type: git + # project/repository + name: strategia-talous/strategia-talous-pipelines + +extends: + template: azure-pipelines-drupal-release.yml@strategia-talous-pipelines From 888c3ac6d9ab75bb99174edaeff50564e8834db6 Mon Sep 17 00:00:00 2001 From: TautvydasGustas1 <39690430+TautvydasGustas1@users.noreply.github.com> Date: Tue, 10 Aug 2021 11:05:29 +0300 Subject: [PATCH 2/2] Add files via upload