Skip to content

Commit

Permalink
ci/misc: fix double push/pull runs (#1069)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers authored Feb 11, 2024
1 parent 4a056ce commit b3ea9bb
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 7 deletions.
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

0 comments on commit b3ea9bb

Please sign in to comment.