-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: ensure integration tests run to completion
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,6 +76,18 @@ runs: | |
echo "sha=NOPE" >> $GITHUB_OUTPUT | ||
fi | ||
shell: bash | ||
- name: merge endo integration branch | ||
id: endo-integration-merge | ||
run: |- | ||
set -e | ||
git ls-remote --exit-code --heads origin "refs/heads/integration-endo-${{ steps.endo-branch.outputs.result }}" || exit 0 | ||
git fetch --unshallow origin integration-endo-${{ steps.endo-branch.outputs.result }} | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git merge --commit --no-edit origin/integration-endo-${{ steps.endo-branch.outputs.result }} | ||
shell: bash | ||
working-directory: ${{ inputs.path }} | ||
if: steps.endo-branch.outputs.result != 'NOPE' | ||
- name: Reconfigure git to use HTTP authentication | ||
run: git config --global url."https://github.com/".insteadOf ssh://[email protected]/ | ||
shell: bash | ||
|