Skip to content

Commit 2d56a54

Browse files
committed
Automation proc update
1 parent f0e3543 commit 2d56a54

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/sync-upstream.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ jobs:
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: |
@@ -99,6 +105,7 @@ jobs:
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.

0 commit comments

Comments
 (0)