Skip to content

Commit

Permalink
feat: add trigger for docs ci (#1045)
Browse files Browse the repository at this point in the history
This short workflow is used to trigger the new [downstream documentation
CI workflow](Mellanox/network-operator-docs#91).
  • Loading branch information
maze88 authored Aug 27, 2024
2 parents 658daa1 + dc6145c commit 5369ab5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/docs-ci-trigger.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: documentation CI - call downstream workflow

on:
push:
tags:
- "v*"

env:
DOWNSTREAM_WORKFLOW_REPO: Mellanox/network-operator-docs
DOWNSTREAM_WORKFLOW_PATH: .github/workflows/docs-ci.yaml
DOWNSTREAM_WORKFLOW_BRANCH: main

jobs:
trigger_downstream_workflow:
uses: ${{ env.DOWNSTREAM_WORKFLOW_REPO }}/${{ env.DOWNSTREAM_WORKFLOW_PATH }}@${{ env.DOWNSTREAM_WORKFLOW_BRANCH }}
with:
git_tag: ${{ github.ref_name }}

0 comments on commit 5369ab5

Please sign in to comment.