Skip to content

Commit e570a7f

Browse files
authored
Merge pull request #1489 from nazar-pc/run-ci-on-v3-branch
Run CI on `v3` branch
2 parents b5d8517 + 534fc73 commit e570a7f

File tree

6 files changed

+28
-8
lines changed

6 files changed

+28
-8
lines changed

.github/workflows/codeql.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
#
1212
name: CodeQL
1313

14-
on: [pull_request, workflow_dispatch]
14+
on:
15+
push:
16+
branches: [ v3 ]
17+
pull_request:
18+
workflow_dispatch:
1519

1620
concurrency:
1721
# Cancel a currently running workflow from the same PR, branch or tag when a
@@ -32,7 +36,7 @@ jobs:
3236
strategy:
3337
fail-fast: false
3438
matrix:
35-
language: ['c-cpp', 'javascript-typescript', 'python']
39+
language: [ 'c-cpp', 'javascript-typescript', 'python' ]
3640
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ]
3741
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both.
3842
# Use only 'javascript-typescript' to analyze code written in JavaScript,

.github/workflows/mediasoup-node.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: mediasoup-node
22

3-
on: [pull_request, workflow_dispatch]
3+
on:
4+
push:
5+
branches: [ v3 ]
6+
pull_request:
7+
workflow_dispatch:
48

59
concurrency:
610
# Cancel a currently running workflow from the same PR, branch or tag when a

.github/workflows/mediasoup-rust.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: mediasoup-rust
22

3-
on: [pull_request, workflow_dispatch]
3+
on:
4+
push:
5+
branches: [ v3 ]
6+
pull_request:
7+
workflow_dispatch:
48

59
concurrency:
610
# Cancel a currently running workflow from the same PR, branch or tag when a

.github/workflows/mediasoup-worker-fuzzer.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: mediasoup-worker-fuzzer
22

3-
on: [pull_request, workflow_dispatch]
3+
on:
4+
push:
5+
branches: [ v3 ]
6+
pull_request:
7+
workflow_dispatch:
48

59
concurrency:
610
# Cancel a currently running workflow from the same PR, branch or tag when a

.github/workflows/mediasoup-worker-prebuild.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: mediasoup-worker-prebuild
33
# Only trigger on GitHub releases.
44
on:
55
release:
6-
types: [published]
6+
types: [ published ]
77

88
jobs:
99
ci:
@@ -19,7 +19,7 @@ jobs:
1919
cc: gcc
2020
cxx: g++
2121
# Worker prebuild for Linux with kernel version 6 Ubuntu (22.04).
22-
# Let's not use Ubutu 24.04 to avoid same potential problem as described
22+
# Let's not use Ubuntu 24.04 to avoid same potential problem as described
2323
# above.
2424
- os: ubuntu-22.04
2525
cc: gcc

.github/workflows/mediasoup-worker.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: mediasoup-worker
22

3-
on: [pull_request, workflow_dispatch]
3+
on:
4+
push:
5+
branches: [ v3 ]
6+
pull_request:
7+
workflow_dispatch:
48

59
concurrency:
610
# Cancel a currently running workflow from the same PR, branch or tag when a

0 commit comments

Comments
 (0)