Skip to content

Commit ad61394

Browse files
committed
ci: Allow running CI workflow in topic branches
This commit updates the CI workflow to allow running the workflow in the branches prefixed with `topic-` (i.e. topic branches). Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
1 parent c862dc8 commit ad61394

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ name: CI
44

55
on:
66
push:
7-
branches: [ main ]
7+
branches:
8+
- main
9+
- topic-*
810
pull_request_target:
9-
branches: [ main ]
11+
branches:
12+
- main
13+
- topic-*
1014
workflow_call:
1115
secrets:
1216
AWS_CACHE_SDK_ACCESS_KEY_ID:

0 commit comments

Comments
 (0)