Attempt to disable extraneous runs on CI

This commit is contained in:
Christian Mazakas
2023-05-11 08:39:29 -07:00
parent 80a1904d92
commit bcf5d0cf13
2 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,7 @@ local library = "unordered";
local triggers = local triggers =
{ {
branch: [ "master", "develop", "feature/*", "bugfix/*", "fix/*", "pr/*" ] branch: [ "master", "develop", "bugfix/*", "fix/*", "pr/*" ]
}; };
local ubsan = { UBSAN: '1', UBSAN_OPTIONS: 'print_stacktrace=1' }; local ubsan = { UBSAN: '1', UBSAN_OPTIONS: 'print_stacktrace=1' };

View File

@ -15,7 +15,6 @@ on:
- master - master
- develop - develop
- bugfix/** - bugfix/**
- feature/**
- fix/** - fix/**
- pr/** - pr/**