From 808129bcf077912c2ed4af5aea517c32ec1315a5 Mon Sep 17 00:00:00 2001 From: Ashwin P Chandran Date: Wed, 23 Nov 2022 16:08:23 -0800 Subject: [PATCH] Reenable CI tests for feature branches (#2908) * Reenable CI tests for feature branches Signed-off-by: Ashwin P Chandran --- .github/workflows/build_and_test_workflow.yml | 6 +++--- .github/workflows/cypress_workflow.yml | 4 ++-- CHANGELOG.md | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_and_test_workflow.yml b/.github/workflows/build_and_test_workflow.yml index 5c13cafa980b..8951c5459562 100644 --- a/.github/workflows/build_and_test_workflow.yml +++ b/.github/workflows/build_and_test_workflow.yml @@ -3,14 +3,14 @@ name: Build and test -# trigger on every commit push and PR for all branches except feature branches and pushes for backport branches +# trigger on every commit push and PR for all branches except pushes for backport branches on: push: - branches: [ '**', '!feature/**', '!backport/**' ] + branches: [ '**', '!backport/**' ] paths-ignore: - '**/*.md' pull_request: - branches: [ '**', '!feature/**' ] + branches: [ '**' ] paths-ignore: - '**/*.md' diff --git a/.github/workflows/cypress_workflow.yml b/.github/workflows/cypress_workflow.yml index 41b9d46aa32f..5c3371db0f72 100644 --- a/.github/workflows/cypress_workflow.yml +++ b/.github/workflows/cypress_workflow.yml @@ -1,9 +1,9 @@ name: Run cypress tests -# trigger on every PR for all branches except feature branches +# trigger on every PR for all branches on: pull_request: - branches: [ '**', '!feature/**' ] + branches: [ '**' ] paths-ignore: - '**/*.md' diff --git a/CHANGELOG.md b/CHANGELOG.md index 6032851cb416..8a208b4f1f40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -74,6 +74,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Add CHANGELOG.md and related workflows ([#2414](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2414)) - Update backport custom branch name to utilize head template ([#2766](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2766)) +- Re-enable CI workflows for feature branckes ([#2908](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2908)) ### 📝 Documentation