Skip to content

missing inputs

missing inputs #7

Workflow file for this run

name: 'Tag and Deploy Site'
on:
push:
paths:
- .github/workflows/release.yml
jobs:
tag_site:
name: Tag Site
uses: CMSGov/dpc-app/.github/workflows/tag_release.yml@jd/dpc-4433-gha-deploy-static
with:
repo_ref: main
secrets: inherit
test_outputs:
name: Verifying Output
runs-on: ubuntu-latest
needs: tag_site
steps:
- name: Verify output
env:
OUTPUT: ${{ needs.tag_site.outputs.next_rev }}
run: echo $OUTPUT
deploy:
name: Deploy to staging
needs: tag_site
uses: ./.github/workflows/fake_deploy.yml

Check failure on line 28 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Tag and Deploy Site

Invalid workflow file

The workflow is not valid. In .github/workflows/release.yml (Line: 28, Col: 11): Error from called workflow CMSgov/dpc-static-site/.github/workflows/fake_deploy.yml@40c8479f522a9f1b53c038619ef90b330bb3c6b0 (Line: 7, Col: 9): Required property is missing: type
with:
target_environment: staging
static_repo_ref: ${{ needs.tag_site.outputs.next_rev }}