We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9942d08 commit 17f1d0aCopy full SHA for 17f1d0a
.github/workflows/docs-ci-trigger.yaml
@@ -4,10 +4,17 @@ on:
4
push:
5
tags:
6
- "v*"
7
+ branches: # TODO: remove this trigger after testing
8
+ - "feature/docs-ci-refactor"
9
10
jobs:
- trigger_downstream_workflow:
- uses: Mellanox/network-operator-docs/.github/workflows/docs-ci.yaml@main
11
- with:
12
- git_tag: ${{ github.ref_name }}
13
- secrets: inherit
+ call_docs_ci_downstream_workflow:
+ env:
+ # GH_TOKEN: ${{ secrets.GH_TOKEN_NVIDIA_CI_CD }}
14
+ GIT_TAG: mz-test # TODO: revert to ${{ github.ref_name }} after testing
15
+ run: |
16
+ gh workflow run docs-ci.yaml \
17
+ --repo ${{ github.repository_owner }}/network-operator-docs \
18
+ --ref feature/docs-ci-refactor \
19
+ --field git_tag=$GIT_TAG
20
+ # TODO: change ref to `main` after testing
0 commit comments