Skip to content

Commit

Permalink
Ordering change from pulumi/ci-mgmt@0e7a98d
Browse files Browse the repository at this point in the history
  • Loading branch information
iwahbe committed Aug 25, 2023
1 parent 76d843c commit e2179ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v3
with:
submodules: true
ref: ${{ env.PR_COMMIT_SHA }}
submodules: true
- name: Checkout Scripts Repo
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -259,8 +259,8 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v3
with:
submodules: true
ref: ${{ env.PR_COMMIT_SHA }}
submodules: true
- name: Checkout Scripts Repo
uses: actions/checkout@v3
with:
Expand Down
6 changes: 5 additions & 1 deletion scripts/upstream.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ start_rebase() {
fi

git branch -f local
git checkout -B pulumi-patch "${FROM}"
if [ -n "$FROM" ]; then
git checkout -B pulumi-patch "$FROM"
else
git checkout -B pulumi-patch
fi
git branch --set-upstream-to=local pulumi-patch

for patch in ../patches/*.patch; do
Expand Down

0 comments on commit e2179ed

Please sign in to comment.