From 7eb9386dd5800ed0adf61d2ad289e1bd62736532 Mon Sep 17 00:00:00 2001 From: Pankaj Koti Date: Tue, 1 Oct 2024 03:39:33 +0530 Subject: [PATCH] Remove PR branch added for testing a change in CI in #1224 (#1233) We temporarily added a PR (#1224) branch to the CI test.yml to test a new example DAG, along with the necessary environment variables for the DAG. However, I missed adding a review comment to remove the branch after testing. This PR removes the temporarily added branch from the CI configuration. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index baa535d4b..2cfe0e00d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: test on: push: # Run on pushes to the default branch - branches: [main,poc-dbt-compile-task] + branches: [main] pull_request_target: # Also run on pull requests originated from forks branches: [main]