Skip to content

Commit c2459f2

Browse files
committed
ci: do not trigger CI on all branches
Signed-off-by: Mikaël Barbero <mikael.barbero@eclipse-foundation.org>
1 parent c485a50 commit c2459f2

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/ci-guardrails.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: CI Guardrails
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- 'main'
67
pull_request:
78
workflow_dispatch:
89

.github/workflows/ci-native.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Native Binaries
33
on:
44
push:
55
branches:
6-
- '**'
6+
- 'main'
77
tags-ignore:
88
- 'v*'
99
pull_request:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6-
- '**'
6+
- 'main'
77
tags-ignore:
88
- 'v*'
99
pull_request:

.github/workflows/sast.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: SAST
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- 'main'
67
pull_request:
78
schedule:
89
- cron: '32 3 * * 1'

.github/workflows/site.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Site
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- 'main'
67
tags: ['v*']
78
workflow_dispatch:
89

0 commit comments

Comments
 (0)