diff --git a/.github/workflows/build_and_test_workflow.yml b/.github/workflows/build_and_test_workflow.yml index 5c13cafa980..8951c545956 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 41b9d46aa32..5c3371db0f7 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 6032851cb41..8a208b4f1f4 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