File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7979 run : |
8080 if git diff --staged --quiet; then echo "changed=false" >> $GITHUB_OUTPUT; else echo "changed=true" >> $GITHUB_OUTPUT; fi
8181
82+ - name : List staged files (debug)
83+ if : steps.diff.outputs.changed == 'true'
84+ run : |
85+ echo "Staged files:";
86+ git diff --name-only --staged | sed -n '1,100p'
87+
8288 - name : Commit and push sync branch
8389 if : steps.diff.outputs.changed == 'true'
8490 run : |
99105 token : ${{ env.PR_CREATE_TOKEN }}
100106 branch : ci/sync-upstream
101107 base : ${{ github.event.repository.default_branch }}
108+ create-only : true
102109 title : ' Sync from upstream with transformations'
103110 body : |
104111 This PR was created automatically by the Sync Upstream workflow.
@@ -116,6 +123,7 @@ jobs:
116123 with :
117124 branch : ci/sync-upstream
118125 base : ${{ github.event.repository.default_branch }}
126+ create-only : true
119127 title : ' Sync from upstream with transformations'
120128 body : |
121129 This PR was created automatically by the Sync Upstream workflow.
You can’t perform that action at this time.
0 commit comments