Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Run on push only in the main branch #2282

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci-android-jni.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: CI Android JNI
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-disable-gtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
name: CI Disable GTest
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/ci-disable-gtest.yml'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci-linux-golden-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
# which can be downloaded from GitHub'S UI or with 'gh run download'.

name: CI Linux Golden Tests
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-linux-static-old-local.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI Unix Static For AVIF_LOCAL
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/ci-linux-static-old-local.yml'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
# with an additional build configuration (using installed deps and dav1d).

name: CI MinGW
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

permissions:
contents: read
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci-unix-shared-installed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
# with an additional build configuration (using installed deps and dav1d).

name: CI Unix Shared Installed
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

permissions:
contents: read
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci-unix-shared-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
# * Does not build rav1e, SVT-AV1 nor libgav1.

name: CI Unix Shared Local
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-unix-static-av2.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI Unix Static AV2
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/ci-unix-static-av2.yml'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-unix-static-sanitized.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI Unix Static Sanitized
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/ci-unix-static-sanitized.yml'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-unix-static.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI Unix Static
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/ci-unix-static.yml'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci-windows-installed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
# * TODO: use proper installations of libgav1, libsharpyuv and SVT once released.

name: CI Windows Installed
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
name: CI Windows
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/ci-windows.yml'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cifuzz.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI Fuzz
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/cifuzz.yml'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: CI Format Check
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

permissions:
contents: read
Expand Down
Loading