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

UHF-11041: Change pipeline triggers #1594

Merged
merged 1 commit into from
Dec 4, 2024
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
25 changes: 12 additions & 13 deletions pipelines/drupal-dev.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# Continuous integration (CI) triggers cause a pipeline to run whenever you push
# an update to the specified branches or you push specified tags.
trigger: none
# batch: true
# branches:
# include:
# - dev
# paths:
# exclude:
# - '*.md'
# - '.github/'
# - 'pipelines/drupal-production.yml'
# - 'pipelines/drupal-staging.yml'
# - 'pipelines/drupal-test.yml'
# - 'compose*'
trigger:
batch: true
branches:
include:
- dev
paths:
exclude:
- '*.md'
- '.github/'
- 'pipelines/drupal-production.yml'
- 'pipelines/drupal-staging.yml'
- 'pipelines/drupal-test.yml'

# 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
Expand Down
24 changes: 12 additions & 12 deletions pipelines/drupal-test.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# 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:
include:
- dev
paths:
exclude:
- '*.md'
- '.github/'
- 'pipelines/drupal-production.yml'
- 'pipelines/drupal-staging.yml'
- 'pipelines/drupal-dev.yml'
trigger: none
# batch: true
# branches:
# include:
# - dev
# paths:
# exclude:
# - '*.md'
# - '.github/'
# - 'pipelines/drupal-production.yml'
# - 'pipelines/drupal-staging.yml'
# - 'pipelines/drupal-dev.yml'

# 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
Expand Down
Loading