Pieter
05/16/2023, 2:05 PMTomek Fiechowski
05/16/2023, 2:45 PMa standard set of ci/cd templates via github actions without it ending in tearsBy CI/CD templates - do you mean only the pipelines definition or service templates (eg. containerised backend app with a database provisioned by default) as well?
Pieter
05/16/2023, 4:54 PMZachary Zaro
05/16/2023, 5:35 PMRob Burger
05/17/2023, 7:45 AM.github/workflows/
directory that trigger on workflow_call
and have inputs
and secrets
that can be passed in. This allows teams to create their own workflows in other repos that simply "call" the shared workflow with inputs and secrets. e.g.
uses: org-name/repo-name/.github/workflows/build-deploy-v1.yml@master
with:
input-name: "value"
secrets:
secret-name: "value"
Works pretty well for us at this scale 🙂 happy to share details! (Might even write up post on our blog soon for the general public...)