From 67913ed99ae101794fa958ed522e4b1dce488039 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Sat, 17 Jun 2023 17:21:09 +0200 Subject: [PATCH] re-enabled CI on feature/* branches --- .drone.jsonnet | 2 +- .github/workflows/ci.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 9ac670e2..7e3e7115 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -6,7 +6,7 @@ local library = "unordered"; local triggers = { - branch: [ "master", "develop", "bugfix/*", "fix/*", "pr/*" ] + branch: [ "master", "develop", "feature/*", "bugfix/*", "fix/*", "pr/*" ] }; local ubsan = { UBSAN: '1', UBSAN_OPTIONS: 'print_stacktrace=1' }; diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96dfa72a..74d14def 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,7 @@ on: - master - develop - bugfix/** + - feature/** - fix/** - pr/**