Update all-workflows.yaml #11
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
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
pull_request: | |
release: | |
workflow_dispatch: | |
name: Run all workflows | |
jobs: | |
# We call the reuseable workflow that triggers all AEF-DDF workflows | |
run-all-AEF-DFF-workflows: | |
name: ⚙️ Run all AEF-DDF workflows | |
uses: ssi-dk/AEF-DDF/.github/workflows/workflow-dispatcher.yaml@workflows | |
with: | |
# We pass information about the triggering event | |
event_name: ${{ github.event_name }} | |
run_id: ${{ github.run_id }} | |
main_branches: main,new_workflows | |
# code-coverage creates data bases for the tests. Here you can specify the schemas you need for the workflow | |
schema_creation: '"CREATE SCHEMA test_ds; CREATE SCHEMA not_test_ds;"' | |
repository: ${{ github.repository }} | |
secrets: inherit |