Skip to content

Commit 1806c69

Browse files
authored
[GHA] Disable merge group artifacts storage in cloud (#32645)
We use only post-commit ones anyway
1 parent 6ecaf04 commit 1806c69

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/job_build_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ jobs:
402402
403403
- name: Store artifacts to a shared drive
404404
id: store_artifacts
405-
if: ${{ inputs.event-name != 'schedule' }}
405+
if: ${{ inputs.event-name != 'schedule' && inputs.event-name != 'merge_group' }}
406406
uses: ./openvino/.github/actions/store_artifacts
407407
with:
408408
artifacts: |

.github/workflows/job_build_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ jobs:
401401

402402
- name: Store artifacts to a shared drive
403403
id: store_artifacts
404-
if: ${{ inputs.event-name != 'schedule' }}
404+
if: ${{ inputs.event-name != 'schedule' && inputs.event-name != 'merge_group' }}
405405
uses: ./openvino/.github/actions/store_artifacts
406406
with:
407407
artifacts: |

.github/workflows/mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ jobs:
428428

429429
- name: Store artifacts to a shared drive
430430
id: store_artifacts
431-
if: ${{ always() }}
431+
if: ${{ github.event_name != 'merge_group' }}
432432
uses: ./openvino/.github/actions/store_artifacts
433433
with:
434434
artifacts: |

.github/workflows/mac_arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ jobs:
524524

525525
- name: Store artifacts to a shared drive
526526
id: store_artifacts
527-
if: ${{ always() }}
527+
if: ${{ github.event_name != 'merge_group' }}
528528
uses: ./openvino/.github/actions/store_artifacts
529529
with:
530530
artifacts: |

.github/workflows/manylinux_2014.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ jobs:
259259

260260
- name: Store artifacts to a shared drive
261261
id: store_artifacts
262-
if: ${{ always() }}
262+
if: ${{ github.event_name != 'merge_group' }}
263263
uses: ./src/.github/actions/store_artifacts
264264
with:
265265
artifacts: |

.github/workflows/manylinux_2_28.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ jobs:
248248

249249
- name: Store artifacts to a shared drive
250250
id: store_artifacts
251-
if: ${{ always() }}
251+
if: ${{ github.event_name != 'merge_group' }}
252252
uses: ./src/.github/actions/store_artifacts
253253
with:
254254
artifacts: |

0 commit comments

Comments
 (0)