We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f754b23 commit 4127036Copy full SHA for 4127036
1 file changed
.github/workflows/release-proposal-dispatch.yml
@@ -449,9 +449,9 @@ jobs:
449
exit 1
450
fi
451
452
- # List both commit hashes in reverse order, space separated (no extra quotes so commit-headless gets plain SHAs)
453
- COMMITS=$(git log "$ORIGINAL_HEAD".. --format='%H' | tr '\n' ' ' | xargs)
454
- echo "COMMITS: $COMMITS"
+ # Oldest → newest (chronological). Plain `git log` is newest-first; commit-headless should receive
+ # parent→child order so replays/signing match git history. Space-separated SHAs for the action.
+ COMMITS=$(git log --reverse "$ORIGINAL_HEAD".. --format='%H' | tr '\n' ' ' | xargs)
455
echo "commits=$COMMITS" >> $GITHUB_OUTPUT
456
457
# Output the results
0 commit comments