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 41f9fbb commit b7a3da0Copy full SHA for b7a3da0
1 file changed
.github/workflows/kernel-build-and-test-multiarch-trigger.yml
@@ -69,6 +69,20 @@ jobs:
69
echo "SKIP_CI=false" >> "$GITHUB_ENV"
70
fi
71
72
+ # Check for [skip kselftests] in commit message or PR title
73
+ if echo "$COMMIT_MSG" | grep -qiE '\[skip kselftests\]' || \
74
+ echo "$PR_TITLE" | grep -qiE '\[skip kselftests\]'; then
75
+ echo "⏭️ [skip kselftests] detected — skipping kselftests"
76
+ SKIP_KSELFTESTS=true
77
+ fi
78
+
79
+ # Check for [skip ltp] in commit message or PR title
80
+ if echo "$COMMIT_MSG" | grep -qiE '\[skip ltp\]' || \
81
+ echo "$PR_TITLE" | grep -qiE '\[skip ltp\]'; then
82
+ echo "⏭️ [skip ltp] detected — skipping LTP"
83
+ SKIP_LTP=true
84
85
86
# On push events there is no PR context; BASE_REF is empty string
87
# It will be deduced automatically in a later worklow
88
if [[ "$IS_PR" == "false" ]]; then
0 commit comments