Skip to content

Commit c8edb38

Browse files
Me/dpc 4765 remove gf from workflows (#2714)
## 🎫 Ticket https://jira.cms.gov/browse/DPC-4765 ## 🛠 Changes - Removed _-gf_ and __gf_ suffixes on workflows. - Removed _(Greenfield)_ from the names of workflows. ## ℹ️ Context Legacy is gone, so we no longer have to differentiate between legacy and GF workflows. ## 🧪 Validation Due to the name changes, these are all "new" workflows as far as Github is concerned, so I can't run them until after this is merged and they are created. Once that's done, I'll do a full deploy just to be sure things are working, but this is about as minor a change as there can be, so we're probably ok.
1 parent 89faa41 commit c8edb38

14 files changed

+36
-36
lines changed

.github/workflows/api-waf-sync-deploy-gf.yml renamed to .github/workflows/api-waf-sync-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Api-Waf-Sync Deploy (Greenfield)
1+
name: Api-Waf-Sync Deploy
22

33
on:
44
workflow_call:
@@ -23,12 +23,12 @@ on:
2323
paths:
2424
- lambda/api-waf-sync/**
2525
- .github/workflows/api-waf-sync-deploy.yml
26-
- .github/workflows/deploy_go_lambda_gf.yml
26+
- .github/workflows/deploy_go_lambda.yml
2727

2828
jobs:
2929
deploy:
3030
name: 'Deploy API WAF sync'
31-
uses: ./.github/workflows/deploy_go_lambda_gf.yml
31+
uses: ./.github/workflows/deploy_go_lambda.yml
3232
permissions:
3333
id-token: write
3434
contents: read

.github/workflows/api-waf-sync-test-integration-gf.yml renamed to .github/workflows/api-waf-sync-test-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: Api-Waf-Sync Integration Tests (Greenfield)
1+
name: Api-Waf-Sync Integration Tests
22

33
on:
44
pull_request:
55
paths:
6-
- .github/workflows/api-waf-sync-test-integration-gf.yml
7-
- .github/workflows/api-waf-sync-deploy-gf.yml
8-
- .github/workflows/deploy_go_lambda-gf.yml
6+
- .github/workflows/api-waf-sync-test-integration.yml
7+
- .github/workflows/api-waf-sync-deploy.yml
8+
- .github/workflows/deploy_go_lambda.yml
99
- lambda/api-waf-sync/**
1010
workflow_dispatch:
1111

@@ -21,7 +21,7 @@ jobs:
2121
# Deploy first if triggered by pull_request
2222
deploy:
2323
if: ${{ github.event_name == 'pull_request' }}
24-
uses: ./.github/workflows/api-waf-sync-deploy-gf.yml
24+
uses: ./.github/workflows/api-waf-sync-deploy.yml
2525
with:
2626
env: dev
2727
secrets: inherit
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: "DPC CI Workflow (Greenfield)"
1+
name: "DPC CI Workflow"
22

33
on:
44
pull_request:
55
paths:
6-
- .github/workflows/ci-workflow-gf.yml
6+
- .github/workflows/ci-workflow.yml
77
- dpc-admin/**
88
- dpc-aggregation/**
99
- dpc-api/**
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: utility-deploy-go-lambda (Greenfield)
1+
name: utility-deploy-go-lambda
22

33
on:
44
workflow_call:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'DPC - Docker Build (Greenfield)'
1+
name: 'DPC - Docker Build'
22

33
on:
44
workflow_dispatch:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'DPC - ECS Deploy (Greenfield)'
1+
name: 'DPC - ECS Deploy'
22

33
on:
44
workflow_dispatch:
@@ -187,7 +187,7 @@ jobs:
187187
services-up:
188188
name: All Services Healthy
189189
needs: deploy
190-
uses: ./.github/workflows/check_healthy_gf.yml
190+
uses: ./.github/workflows/check_healthy.yml
191191
with:
192192
env: ${{ inputs.env }}
193193
secrets: inherit
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'DPC - Build and Deploy (Greenfield)'
1+
name: 'DPC - Build and Deploy'
22

33
on:
44
schedule:
@@ -89,14 +89,14 @@ jobs:
8989
name: "Build Images"
9090
needs:
9191
- set-parameters
92-
uses: ./.github/workflows/docker-build-gf.yml
92+
uses: ./.github/workflows/docker-build.yml
9393
secrets: inherit
9494

9595
deploy:
9696
needs:
9797
- set-parameters
9898
- build
99-
uses: ./.github/workflows/ecs-deploy-gf.yml
99+
uses: ./.github/workflows/ecs-deploy.yml
100100
with:
101101
env: ${{ inputs.env || 'dev' }}
102102
confirm_env: ${{ inputs.env || 'dev' }}
@@ -107,7 +107,7 @@ jobs:
107107

108108
smoke-test:
109109
needs: deploy
110-
uses: ./.github/workflows/smoke-test-gf.yml
110+
uses: ./.github/workflows/smoke-test.yml
111111
with:
112112
env: ${{ inputs.env || 'dev' }}
113113
secrets: inherit

.github/workflows/opt-out-export-deploy-gf.yml renamed to .github/workflows/opt-out-export-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Opt-Out-Export Deploy (Greenfield)
1+
name: Opt-Out-Export Deploy
22

33
on:
44
workflow_call:
@@ -23,12 +23,12 @@ on:
2323
paths:
2424
- lambda/opt-out-export/**
2525
- .github/workflows/opt-out-export-deploy.yml
26-
- .github/workflows/deploy_go_lambda_gf.yml
26+
- .github/workflows/deploy_go_lambda.yml
2727

2828
jobs:
2929
deploy:
3030
name: 'Deploy Opt Out Export'
31-
uses: ./.github/workflows/deploy_go_lambda_gf.yml
31+
uses: ./.github/workflows/deploy_go_lambda.yml
3232
permissions:
3333
id-token: write
3434
contents: read

.github/workflows/opt-out-export-test-integration-gf.yml renamed to .github/workflows/opt-out-export-test-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Opt-Out-Export Integration Tests (Greenfield)
1+
name: Opt-Out-Export Integration Tests
22

33
on:
44
pull_request:
@@ -30,7 +30,7 @@ jobs:
3030
# Deploy first if triggered by pull_request
3131
deploy:
3232
if: ${{ github.event_name == 'pull_request' }}
33-
uses: ./.github/workflows/opt-out-export-deploy-gf.yml
33+
uses: ./.github/workflows/opt-out-export-deploy.yml
3434
with:
3535
env: test
3636
permissions:

0 commit comments

Comments
 (0)