We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 771c5e3 commit a894d69Copy full SHA for a894d69
.github/workflows/build-historical.yml
@@ -112,14 +112,17 @@ jobs:
112
git config user.name "GitHub Actions"
113
git config user.email "[email protected]"
114
115
+ UPSTREAM="https://github.com/TheSuperHackers/GeneralsGameCode.git"
116
+ git remote add upstream "$UPSTREAM" || true
117
+
118
PR_LIST="${{ github.event.inputs.pull_requests }}"
119
IFS=',' read -ra PRS <<< "$PR_LIST"
120
121
for PR in "${PRS[@]}"; do
122
PR=$(echo "$PR" | xargs)
123
echo "::group::Applying PR #$PR"
124
- git fetch origin "pull/$PR/head:pr-$PR"
125
+ git fetch upstream "pull/$PR/head:pr-$PR"
126
127
PR_BASE=$(git merge-base pr-$PR HEAD)
128
PR_COMMITS=$(git rev-list --reverse "$PR_BASE..pr-$PR")
0 commit comments