Skip to content

Update CWT_Claims to 15 #27

Update CWT_Claims to 15

Update CWT_Claims to 15 #27

# 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:
if: ${{ github.event_name != 'release' }}
secrets: inherit
uses: ./.github/workflows/ci.yml
release:
if: ${{ github.event_name == 'release' }}
secrets: inherit
uses: ./.github/workflows/package.yml
merge-checks-ok:
runs-on: ubuntu-latest
needs: [ci]
steps:
- name: ok
run: |
echo "It's working!"
release-checks-ok:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'release' }}
needs: [ci, release]
steps:
- name: ok
run: |
echo "Houston we have cleared the tower"