Make PRs for Nextstrain projects which depend on Auspice #238
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Make PRs for Nextstrain projects which depend on Auspice" | |
on: | |
workflow_dispatch: | |
inputs: | |
nextstrain-org: | |
description: 'Make PR on nextstrain.org' | |
required: true | |
type: boolean | |
auspice-us: | |
description: 'Make PR on auspice.us' | |
required: true | |
type: boolean | |
jobs: | |
nextstrain-org: | |
if: inputs.nextstrain-org | |
uses: ./.github/workflows/make_pr_for_downstream_repo.yaml | |
secrets: inherit | |
with: | |
repository: nextstrain/nextstrain.org | |
directory: auspice-client | |
auspice-us: | |
if: inputs.auspice-us | |
uses: ./.github/workflows/make_pr_for_downstream_repo.yaml | |
secrets: inherit | |
with: | |
repository: nextstrain/auspice.us |