Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
TEMP: Switch the branch used for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelhwilliams committed Nov 12, 2024
1 parent 858be5e commit 457ca7e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/copilot_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ on:

jobs:
setup:
uses: communitiesuk/funding-service-design-workflows/.github/workflows/determine-jobs.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/determine-jobs.yml@fix/remove-pip-cache
with:
environment: ${{ inputs.environment }}

pre_deploy_tests:
uses: communitiesuk/funding-service-design-workflows/.github/workflows/pre-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/pre-deploy.yml@fix/remove-pip-cache
with:
# Note - no db-name, so defaults to postgres_db
postgres_unit_testing: true
Expand All @@ -62,7 +62,7 @@ jobs:
concurrency: build-fund-store-pack
permissions:
packages: write
uses: communitiesuk/funding-service-design-workflows/.github/workflows/package.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/package.yml@fix/remove-pip-cache
with:
version_to_build: sha-${{ github.sha }}
owner: ${{ github.repository_owner }}
Expand All @@ -71,7 +71,7 @@ jobs:
dev_deploy:
needs: [ pre_deploy_tests, paketo_build, setup ]
if: ${{ contains(fromJSON(needs.setup.outputs.jobs_to_run), 'dev') }}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@fix/remove-pip-cache
secrets:
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }}
with:
Expand All @@ -88,7 +88,7 @@ jobs:
secrets:
FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }}
FSD_GH_APP_KEY: ${{ secrets.FSD_GH_APP_KEY }}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@fix/remove-pip-cache
with:
run_performance_tests: ${{ inputs.run_performance_tests || true }}
run_e2e_tests_assessment: ${{ inputs.run_e2e_tests_assessment || false }}
Expand All @@ -99,7 +99,7 @@ jobs:
test_deploy:
needs: [ dev_deploy, post_dev_deploy_tests, paketo_build, setup ]
if: ${{ always() && contains(fromJSON(needs.setup.outputs.jobs_to_run), 'test') && (! contains(needs.*.result, 'failure') ) && (! contains(needs.*.result, 'cancelled') )}}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@fix/remove-pip-cache
secrets:
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }}
with:
Expand All @@ -117,7 +117,7 @@ jobs:
secrets:
FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }}
FSD_GH_APP_KEY: ${{ secrets.FSD_GH_APP_KEY }}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@fix/remove-pip-cache
with:
run_performance_tests: ${{ inputs.run_performance_tests || false }}
run_e2e_tests_assessment: ${{ inputs.run_e2e_tests_assessment || true }}
Expand All @@ -128,7 +128,7 @@ jobs:
uat_deploy:
needs: [ dev_deploy, post_dev_deploy_tests, test_deploy, post_test_deploy_tests, paketo_build, setup ]
if: ${{ always() && contains(fromJSON(needs.setup.outputs.jobs_to_run), 'uat') && (! contains(needs.*.result, 'failure') ) && (! contains(needs.*.result, 'cancelled') )}}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@fix/remove-pip-cache
secrets:
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }}
with:
Expand All @@ -146,7 +146,7 @@ jobs:
secrets:
FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }}
FSD_GH_APP_KEY: ${{ secrets.FSD_GH_APP_KEY }}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@fix/remove-pip-cache
with:
run_performance_tests: ${{ inputs.run_performance_tests || false }}
run_e2e_tests_assessment: ${{ inputs.run_e2e_tests_assessment || true }}
Expand All @@ -157,7 +157,7 @@ jobs:
prod_deploy:
needs: [ dev_deploy, post_dev_deploy_tests, test_deploy, post_test_deploy_tests, uat_deploy, post_uat_deploy_tests, paketo_build, setup ]
if: ${{ always() && contains(fromJSON(needs.setup.outputs.jobs_to_run), 'prod') && (! contains(needs.*.result, 'failure') ) && (! contains(needs.*.result, 'cancelled') )}}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@fix/remove-pip-cache
secrets:
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }}
with:
Expand Down

0 comments on commit 457ca7e

Please sign in to comment.