Skip to content

Commit 63f52f2

Browse files
chore(ci): skip int tests on website only PRs (#23572)
* chore(ci): skip int tests on website only PRs * Fix script * Add dedicated error message
1 parent f49c6cb commit 63f52f2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/integration.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@ jobs:
104104
should_run=false
105105
fi
106106
107+
if [[ "${{ needs.changes.outputs.website_only }}" == "true" ]]; then
108+
echo "Skipping ${{ matrix.service }} test since only website changes were detected"
109+
exit 0
110+
fi
111+
107112
# Check if any of the three conditions is true
108113
if [[ "${{ github.event_name }}" == "merge_group" || \
109114
"${{ github.event_name }}" == "workflow_dispatch" || \

0 commit comments

Comments
 (0)