diff --git a/.github/workflows/development_workflow.yml b/.github/workflows/development_workflow.yml index 2cacfef..7688b58 100644 --- a/.github/workflows/development_workflow.yml +++ b/.github/workflows/development_workflow.yml @@ -29,15 +29,17 @@ jobs: - name: Debug information run: | - echo "Head Ref: ${{ github.head_ref }}" - echo "Ref Name: ${{ github.ref }}" - echo "Event Name: ${{ github.event_name }}" - + echo "GitHub Ref: ${{ github.ref }}" + echo "GitHub Event Name: ${{ github.event_name }}" + echo "GitHub Repository: ${{ github.repository }}" + git status + git log -2 + - name: Auto-merge to main if tests pass if: ${{ success() }} uses: peter-evans/create-pull-request@v3 with: - branch: merge-to-main-${{ github.head_ref }} + branch: merge-to-main-${{ github.ref_name }} commit-message: Merge development into main title: '[AUTO-MERGE] Merge from Development to Main' body: |