Skip to content

Commit d3fc144

Browse files
Fix missing aws-region error in GitHub gate checks.
1 parent 7f3a1ec commit d3fc144

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/release-and-deploy-bfd.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,10 @@ on:
1616
required: false
1717
default: ""
1818
aws-region:
19-
description: >-
20-
Override the AWS Region
19+
description: "Override the AWS Region"
2120
default: us-east-1
2221
type: choice
23-
options:
24-
- us-east-1
25-
- us-west-2
22+
options: [us-east-1, us-west-2]
2623
required: false
2724
push:
2825
branches:
@@ -127,6 +124,8 @@ jobs:
127124
steps:
128125
- name: Load Slack webhook
129126
uses: cmsgov/cdap/actions/aws-params-env-action@main
127+
env:
128+
AWS_REGION: ${{ github.event.inputs.aws-region || 'us-east-1' }}
130129
with:
131130
params: |
132131
SLACK_WEBHOOK_URL=/bfd/platform/alerting/sensitive/slack/bfd-notices/webhook

0 commit comments

Comments
 (0)