Skip to content

Commit

Permalink
Merge pull request #166 from maze88/feature/docs-ci-refactor
Browse files Browse the repository at this point in the history
fix: refactor docs ci upstream trigger to operate via workflow_dispatch only
  • Loading branch information
maze88 authored Jan 23, 2025
2 parents 3da22b2 + cbfaa17 commit c39949c
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/docs-ci.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: Documentation CI

on:
workflow_call:
inputs:
git_tag:
type: string
description: The git tag (version) from the calling workflow
required: true
workflow_dispatch:
inputs:
git_tag:
Expand All @@ -24,8 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/network-operator-docs # repo must be explicitly set here for workflow calling to behave correctly
token: ${{ inputs.token || secrets.GH_TOKEN_NVIDIA_CI_CD }} # token must be explicitly set here for push to work in following step
token: ${{ secrets.GH_TOKEN_NVIDIA_CI_CD }} # token must be explicitly set here for push to work in following step
- name: Setup Go
uses: actions/[email protected]
with:
Expand Down

0 comments on commit c39949c

Please sign in to comment.