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 78b95bb commit 240dc52Copy full SHA for 240dc52
.github/workflows/s3-regression-tests.yml
@@ -22,8 +22,8 @@ jobs:
22
- name: Check for changes related to s3
23
id: check-changes
24
run: |
25
- git fetch origin ${{ github.base_ref }} --depth 1
26
- CHANGED_FILES=$(git diff remotes/origin/${{ github.base_ref }} --name-only)
+ git fetch origin ${{ github.base_ref || github.event.merge_group.base_ref || github.ref }} --depth 1
+ CHANGED_FILES=$(git diff remotes/origin/${{ github.base_ref || github.event.merge_group.base_ref || github.ref }} --name-only)
27
if echo "$CHANGED_FILES" | grep -q -E '^core/|^services/s3/|^services-custom/s3-transfer-manager/|^http-client-spi/|^http-clients/'; then
28
echo "Detected changes in S3, HTTP client, or core modules"
29
echo "has_s3_related_changes=true" >> $GITHUB_OUTPUT
0 commit comments