Skip to content

Commit 490a98e

Browse files
author
Alex Chapin
committed
fix: Remove pull_request triggers from workflow files for consistency
1 parent 7cbd0c0 commit 490a98e

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

.github/workflows/buildCSharp.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
# Sequence of patterns matched against refs/tags
77
tags:
88
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
9-
pull_request:
10-
branches: [ master ]
119
workflow_dispatch:
1210

1311
env:

.github/workflows/clangformat.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: Clang Format
33
on:
44
push:
55
branches: [ master, develop, clang-format ]
6-
pull_request:
7-
branches: [ master, develop ]
86

97
jobs:
108
build:

.github/workflows/cppcheck.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: cppcheck
22

33
on:
44
push:
5-
branches: [ master ]
6-
pull_request:
75
branches: [ master, develop ]
86

97
jobs:

.github/workflows/python_bindings.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
# Sequence of patterns matched against refs/tags
77
tags:
88
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
9-
pull_request:
10-
branches: [ master ]
119
workflow_dispatch:
1210

1311
env:
@@ -317,7 +315,7 @@ jobs:
317315
echo -e "::endgroup::"
318316
319317
begin_group "Build"
320-
if [ "${{ matrix.name }}" == "Ubuntu_arm64" ]; then
318+
if [ "${{ matrix.name }}" == "Ubuntu" ] || [ "${{ matrix.name }}" == "Ubuntu_arm64" ]; then
321319
echo "Ubuntu_arm64 is apparently running out of memory/CPU during the build as of 2025-06-18, so work around it"
322320
N=$(nproc)
323321
cmake --build --preset conan-release --target openstudiolib -j $N

0 commit comments

Comments
 (0)