Skip to content

Commit

Permalink
Fix bug preventing GHA workflow from calling others
Browse files Browse the repository at this point in the history
  • Loading branch information
eecavanna committed Sep 4, 2024
1 parent ea8ce56 commit 4877047
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/compile-legacy-nmdc-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ name: Compile legacy NMDC documentation into HTML
on:
push: { branches: [ main ] }
workflow_dispatch: { }
# Allow this workflow to be called by other workflows.
# Reference: https://docs.github.com/en/actions/using-workflows/reusing-workflows
workflow_call: { }

jobs:
compile:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/compile-legacy-workflow-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ name: Compile legacy workflow documentation into HTML
on:
push: { branches: [ main ] }
workflow_dispatch: { }
# Allow this workflow to be called by other workflows.
# Reference: https://docs.github.com/en/actions/using-workflows/reusing-workflows
workflow_call: { }

jobs:
compile:
Expand Down

0 comments on commit 4877047

Please sign in to comment.