Skip to content

Commit 7621612

Browse files
committed
Ensure workflows only run for wolfssl repository_owner
1 parent 4421f8b commit 7621612

File tree

8 files changed

+9
-4
lines changed

8 files changed

+9
-4
lines changed

.github/workflows/ada.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
build:
1111

12+
if: github.repository_owner == 'wolfssl'
1213
runs-on: ubuntu-latest
1314

1415
steps:

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
11+
if: github.repository_owner == 'wolfssl'
1212
runs-on: ubuntu-latest
1313

1414
steps:

.github/workflows/ipmitool.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ concurrency:
1616
jobs:
1717
build_wolfssl:
1818
name: Build wolfSSL
19+
if: github.repository_owner == 'wolfssl'
1920
# Just to keep it the same as the testing target
2021
runs-on: ubuntu-22.04
21-
if: github.repository_owner == 'wolfssl'
2222
# This should be a safe limit for the tests to run.
2323
timeout-minutes: 4
2424
steps:

.github/workflows/mbedtls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ jobs:
5454
5555
mbedtls_test:
5656
name: Test interop with mbedtls
57+
if: github.repository_owner == 'wolfssl'
5758
runs-on: ubuntu-latest
5859
needs: build_mbedtls
5960
timeout-minutes: 10
60-
if: github.repository_owner == 'wolfssl'
6161
steps:
6262
- name: Disable IPv6 (IMPORTANT, OTHERWISE DTLS MBEDTLS CLIENT WON'T CONNECT)
6363
run: echo 1 | sudo tee /proc/sys/net/ipv6/conf/lo/disable_ipv6

.github/workflows/msys2.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ concurrency:
1414

1515
jobs:
1616
msys2:
17+
if: github.repository_owner == 'wolfssl'
1718
runs-on: windows-latest
1819
defaults:
1920
run:

.github/workflows/nss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ jobs:
5959
6060
nss_test:
6161
name: Test interop with nss
62+
if: github.repository_owner == 'wolfssl'
6263
runs-on: ubuntu-22.04
6364
needs: build_nss
6465
timeout-minutes: 10
65-
if: github.repository_owner == 'wolfssl'
6666
steps:
6767
- name: Checking if we have nss in cache
6868
uses: actions/cache/restore@v4

.github/workflows/openldap.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ concurrency:
1515
jobs:
1616
build_wolfssl:
1717
name: Build wolfSSL
18+
if: github.repository_owner == 'wolfssl'
1819
# Just to keep it the same as the testing target
1920
runs-on: ubuntu-22.04
2021
# This should be a safe limit for the tests to run.
@@ -49,6 +50,7 @@ jobs:
4950
- osp_ref: 2.6.7
5051
git_ref: OPENLDAP_REL_ENG_2_6_7
5152
name: ${{ matrix.osp_ref }}
53+
if: github.repository_owner == 'wolfssl'
5254
runs-on: ubuntu-22.04
5355
# This should be a safe limit for the tests to run.
5456
timeout-minutes: 20

.github/workflows/sssd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
# List of releases to test
4848
ref: [ 2.9.1 ]
4949
name: ${{ matrix.ref }}
50+
if: github.repository_owner == 'wolfssl'
5051
runs-on: ubuntu-22.04
5152
container:
5253
image: quay.io/sssd/ci-client-devel:ubuntu-latest

0 commit comments

Comments
 (0)