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/misc: fix double push/pull runs #1069

Merged
merged 1 commit into from
Feb 11, 2024
Merged
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
8 changes: 7 additions & 1 deletion .github/workflows/abi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ABI Checks

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
abicheck:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: iOS

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ios:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: lint

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
lint:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: MinGW-w64 Test

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
MinGW-w64-build:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/run-on-arch.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build_job:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/ssl.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: OpenSSL no-deprecated and LibreSSL

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ssl:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: valgrind leak check

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
valgrind:
Expand Down
Loading