Skip to content

cron-prepare

cron-prepare #64

Workflow file for this run

name: cron-prepare
on:
workflow_dispatch: {}
schedule:
- cron: 0 0 * * SUN
jobs:
tiny:
uses: ./.github/workflows/create-prepare-pr.yaml
secrets: inherit
with:
distro: tiny
amplicon:
needs: [tiny]
uses: ./.github/workflows/create-prepare-pr.yaml
secrets: inherit
with:
distro: amplicon
metagenome:
needs: [tiny, amplicon]
if: ${{ always() && !cancelled() && !contains(needs.tiny.result, 'failure') && !contains(needs.*.result, 'cancelled') }}
uses: ./.github/workflows/create-prepare-pr.yaml
secrets: inherit
with:
distro: metagenome
pathogenome:
needs: [tiny, amplicon, metagenome]
if: ${{ always() && !cancelled() && !contains(needs.tiny.result, 'failure') && !contains(needs.*.result, 'cancelled') }}
uses: ./.github/workflows/create-prepare-pr.yaml
secrets: inherit
with:
distro: pathogenome