Skip to content

TEST Lambdas - Deploy Feature Branch to Test #77

TEST Lambdas - Deploy Feature Branch to Test

TEST Lambdas - Deploy Feature Branch to Test #77

name: "TEST Lambdas - Deploy Feature Branch to Test"
on:
workflow_dispatch:
inputs:
build_branch:
description: "Feature branch to push to test?"
required: true
type: "string"
permissions:
pull-requests: write
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
jobs:
run_tests:
uses: ./.github/workflows/new_base-lambdas-reusable-test.yml
with:
environment: test
python_version: "3.11"
build_branch: ${{ inputs.build_branch }}
deploy_all:
uses: ./.github/workflows/new_base-lambdas-reusable-deploy-all.yml
needs: ["run_tests"]
with:
environment: test
python_version: "3.11"
build_branch: ${{ inputs.build_branch }}
sandbox: ndr-test
secrets:
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}