From 4377dcfc0d8199cc8a8ecf4e4c2e68b78a28591a Mon Sep 17 00:00:00 2001 From: KaustubhKumar05 Date: Fri, 15 Mar 2024 16:27:18 +0530 Subject: [PATCH] fix: trigger action on dev merges --- .github/workflows/sync-alpha-to-main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync-alpha-to-main.yml b/.github/workflows/sync-alpha-to-main.yml index bc5039c0b7..34dee4d4ab 100644 --- a/.github/workflows/sync-alpha-to-main.yml +++ b/.github/workflows/sync-alpha-to-main.yml @@ -3,7 +3,7 @@ on: pull_request: types: [closed] branches: - - main + - dev jobs: pull-request: @@ -15,8 +15,8 @@ jobs: if: github.event.pull_request.merged == true with: github_token: ${{ secrets.GITHUB_TOKEN }} - source_branch: 'main' + source_branch: 'dev' destination_branch: 'publish-alpha' pr_title: 'Update publish-alpha' - pr_body: ':robot: Automated PR from main to publish-alpha' + pr_body: ':robot: Automated PR from dev to publish-alpha' pr_label: 'auto-pr'