We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e916d46 commit f1f1315Copy full SHA for f1f1315
1 file changed
.github/workflows/weekly-upstream-sync.yml
@@ -38,6 +38,8 @@ jobs:
38
UPSTREAM_HEAD=$(git rev-parse HEAD)
39
echo "Upstream HEAD: $UPSTREAM_HEAD"
40
41
+ echo "last_merge=$LAST_MERGE" >> "$GITHUB_OUTPUT"
42
+
43
if [ "$LAST_MERGE" = "$UPSTREAM_HEAD" ]; then
44
echo "No new upstream changes since last merge."
45
echo "has_changes=false" >> "$GITHUB_OUTPUT"
@@ -47,7 +49,6 @@ jobs:
47
49
echo "has_changes=true" >> "$GITHUB_OUTPUT"
48
50
echo "commit_count=$COMMIT_COUNT" >> "$GITHUB_OUTPUT"
51
echo "upstream_head=$UPSTREAM_HEAD" >> "$GITHUB_OUTPUT"
- echo "last_merge=$LAST_MERGE" >> "$GITHUB_OUTPUT"
52
53
# Generate a short summary of changes
54
SUMMARY=$(git log --oneline "$LAST_MERGE".."$UPSTREAM_HEAD" | head -20)
0 commit comments