From 8005ac62c0ea6930292eae3dd54cf58fa5cc0c6d Mon Sep 17 00:00:00 2001 From: pbio <10051819+paulbalaji@users.noreply.github.com> Date: Fri, 23 Aug 2024 15:39:03 +0100 Subject: [PATCH] testing Signed-off-by: pbio <10051819+paulbalaji@users.noreply.github.com> --- .github/workflows/create-merge-prs.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/create-merge-prs.yaml b/.github/workflows/create-merge-prs.yaml index 77be905..17ece9e 100644 --- a/.github/workflows/create-merge-prs.yaml +++ b/.github/workflows/create-merge-prs.yaml @@ -4,6 +4,10 @@ on: push: branches: - main + # just for testing + pull_request: + branches: + - main jobs: create-merge-prs: @@ -27,6 +31,9 @@ jobs: git checkout ${{ matrix.name }} git merge origin/main git checkout -b main-to-${{ matrix.name }} + echo "testing" > dummy_test_file.txt + git add dummy_test_file.txt + git commit -m "chore: merge main into ${{ matrix.name }}" git push -fu origin main-to-${{ matrix.name }} - name: Check and Create Pull Request