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 5e5b663 commit 48b98a2Copy full SHA for 48b98a2
.github/workflows/trigger_ab_tests.yml
@@ -23,7 +23,7 @@ jobs:
23
# meaning we will schedule a build of the A/B-testing pipeline to check the just-merged PR for
24
# performance regressions.
25
for f in $(git --no-pager diff --name-only ${{ github.event.before }}..${{ github.event.after }}); do
26
- if [[ "$(basename $f)" =~ (\.(rs|toml|lock)|config)$ ]] || [[ "$f" ~= ^resources/seccomp/ ]]; then
+ if [[ "$(basename $f)" =~ (\.(rs|toml|lock)|config)$ ]] || [[ "$f" =~ ^resources/seccomp/ ]]; then
27
should_schedule_ab_test=1
28
fi
29
done
0 commit comments