Skip to content

Commit 48b98a2

Browse files
committed
fix: Use correct bash regex syntax
also add new line at end of file. Signed-off-by: Patrick Roy <[email protected]>
1 parent 5e5b663 commit 48b98a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/trigger_ab_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# meaning we will schedule a build of the A/B-testing pipeline to check the just-merged PR for
2424
# performance regressions.
2525
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
26+
if [[ "$(basename $f)" =~ (\.(rs|toml|lock)|config)$ ]] || [[ "$f" =~ ^resources/seccomp/ ]]; then
2727
should_schedule_ab_test=1
2828
fi
2929
done

0 commit comments

Comments
 (0)