Skip to content

workflow dependencies experiment #19

workflow dependencies experiment

workflow dependencies experiment #19

# This workflow configures the repository specific choices of which CI builds
# must pass in order for a build to merge. This allows a sinlge global teraform
# configured rule to require a "well known" check in each repository. Whilst
# granting repository stakeholders the ability configure what workflows are
# appropriate to satisfy that check.
name: Merge Requires
on:
push:
jobs:
ci:
secrets: inherit
uses: ./github/workflows/ci.yml

Check failure on line 13 in .github/workflows/merge-requires.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/merge-requires.yml

Invalid workflow file

invalid value workflow reference: no version specified
release:
secrets: inherit
uses: ./github/workflows/package.yml
merge-checks-ok:
needs: [ci]
release-checks-ok:
if: ${{ github.event_name == 'release' }}
needs: [ci, release]