Skip to content

Commit 885320b

Browse files
authored
Restrict GitHub Actions to run only on opensearch-build repo (opensearch-project#3929)
Signed-off-by: Sayali Gaikawad <[email protected]>
1 parent 63f8d63 commit 885320b

6 files changed

+6
-0
lines changed

.github/workflows/os-increment-plugin-versions.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ on:
1818

1919
jobs:
2020
plugin-version-increment-sync:
21+
if: github.repository == 'opensearch-project/opensearch-build'
2122
runs-on: ubuntu-latest
2223
strategy:
2324
fail-fast: false

.github/workflows/os-release-issues.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ on:
1818

1919
jobs:
2020
list-manifest-versions:
21+
if: github.repository == 'opensearch-project/opensearch-build'
2122
runs-on: ubuntu-latest
2223
outputs:
2324
matrix: ${{ steps.set-matrix.outputs.matrix }}

.github/workflows/osd-increment-plugin-versions.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- debug
1818
jobs:
1919
plugin-version-increment-sync:
20+
if: github.repository == 'opensearch-project/opensearch-build'
2021
runs-on: ubuntu-latest
2122
strategy:
2223
fail-fast: false

.github/workflows/osd-release-issues.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ on:
1818

1919
jobs:
2020
list-manifest-versions:
21+
if: github.repository == 'opensearch-project/opensearch-build'
2122
runs-on: ubuntu-latest
2223
outputs:
2324
matrix: ${{ steps.set-matrix.outputs.matrix }}

.github/workflows/releases.yml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88

99
jobs:
1010
list-manifest-versions:
11+
if: github.repository == 'opensearch-project/opensearch-build'
1112
runs-on: ubuntu-latest
1213
outputs:
1314
matrix: ${{ steps.set-matrix.outputs.matrix }}

.github/workflows/versions.yml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88

99
jobs:
1010
update:
11+
if: github.repository == 'opensearch-project/opensearch-build'
1112
runs-on: ubuntu-latest
1213
env:
1314
PYTHON_VERSION: 3.9

0 commit comments

Comments
 (0)