Skip to content

Commit

Permalink
[GHA] Add merge queue stub check for ci/jenkins (openvinotoolkit#27703)
Browse files Browse the repository at this point in the history
Allows to keep Jenkins running in pre-commits, but not in merge queue
without paralyzing queue when Jenkins is offline

Signed-off-by: Alina Kladieva <[email protected]>
  • Loading branch information
akladiev authored Nov 22, 2024
1 parent f6e0ba0 commit c542f21
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/merge_queue_stub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
merge_group:

jobs:
merge_group_stub_check:
name: ci/jenkins
runs-on: ubuntu-latest
defaults:
run:
shell: bash
if: ${{ github.event_name == 'merge_group' }}
steps:
- run: echo "Just a stub check to keep Jenkins running in pre-commits but not in merge queue"

0 comments on commit c542f21

Please sign in to comment.