Skip to content

Commit

Permalink
Merge pull request #2974 from alphagov/bulk/use-yml-for-gha-workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
theseanything authored Jan 4, 2023
2 parents cc86995 + b9d68ee commit 914a34b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
build-and-publish-image:
if: github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success'
name: Build and publish image
uses: alphagov/govuk-infrastructure/.github/workflows/build-and-push-image.yaml@main
uses: alphagov/govuk-infrastructure/.github/workflows/build-and-push-image.yml@main
with:
gitRef: ${{ inputs.gitRef || github.ref }}
secrets:
Expand All @@ -37,7 +37,7 @@ jobs:
trigger-deploy:
name: Trigger deploy to ${{ inputs.environment || 'integration' }}
needs: build-and-publish-image
uses: alphagov/govuk-infrastructure/.github/workflows/deploy.yaml@main
uses: alphagov/govuk-infrastructure/.github/workflows/deploy.yml@main
with:
imageTag: ${{ needs.build-and-publish-image.outputs.imageTag }}
environment: ${{ inputs.environment || 'integration' }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
jobs:
set-automatic-deploys:
name: Set automatic deploys
uses: alphagov/govuk-infrastructure/.github/workflows/set-automatic-deploys.yaml@main
uses: alphagov/govuk-infrastructure/.github/workflows/set-automatic-deploys.yml@main
with:
automaticDeploysEnabled: ${{ github.event.inputs.setAutomaticDeploys == 'enabled' }}
environment: ${{ github.event.inputs.environment }}
Expand Down

0 comments on commit 914a34b

Please sign in to comment.