Skip to content

Commit ed3b048

Browse files
authored
[PRM-392] Update workflow names (#414)
1 parent d2f2c09 commit ed3b048

15 files changed

+18
-181
lines changed

.github/workflows/terraform-daily-healthcheck-deploy-and-destroy.yml renamed to .github/workflows/automated-daily-health-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Daily Healthcheck Deploy, Test and Destroy'
1+
name: 'Z-AUTOMATED: Daily health check'
22

33
on:
44
schedule:
@@ -194,4 +194,4 @@ jobs:
194194
sandbox_workspace: ${{ needs.set_workspace.outputs.workspace }}
195195
terraform_vars: dev.tfvars
196196
backend: backend.conf
197-
secrets: inherit
197+
secrets: inherit

.github/workflows/terraform-dev-to-main-ci.yml renamed to .github/workflows/automated-deploy-dev.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# .github/workflows/terraform-dev
2-
name: 'Development CI Feature to Main'
2+
name: 'Z-AUTOMATED: Deploy - Dev'
33

44
on:
55
push:
@@ -9,7 +9,6 @@ on:
99
branches:
1010
- main
1111

12-
1312
permissions:
1413
pull-requests: write
1514
actions: read # This is required for Plan comment
@@ -229,6 +228,3 @@ jobs:
229228
uses: nhsconnect/national-document-repository/.github/workflows/ui-dev-to-main-ci.yml@main
230229
secrets:
231230
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}
232-
233-
234-

.github/workflows/sonarcloud-analysis.yml renamed to .github/workflows/automated-sonarqube-cloud.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
name: SonarCloud-Analysis
1+
name: 'Z-AUTOMATED: SonarQube Cloud Analysis'
2+
23
on:
34
push:
45
branches:
@@ -21,4 +22,4 @@ jobs:
2122
uses: SonarSource/sonarqube-scan-action@v5
2223
env:
2324
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
24-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
25+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.github/workflows/terraform-destroy-sandbox-environments-cron.yml renamed to .github/workflows/automated-tear-down-sandbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Destroy Sandbox Environments (CRON)'
1+
name: 'Z-AUTOMATED: Tear down - Sandbox'
22

33
on:
44
schedule:

.github/workflows/terraform-destroy-test-environments-cron.yml renamed to .github/workflows/automated-tear-down-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Destroy Test (Test Account) Environment CRON'
1+
name: 'Z-AUTOMATED: Tear down - Test'
22

33
on:
44
schedule:

.github/workflows/cleanup-appconfig-and-lambda-layer-versions.yml renamed to .github/workflows/base-cleanup-appconfig-and-lambda-layer-versions.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Cleanup Untracked App Config Profiles and Lambda Layer Versions'
1+
name: 'Z-BASE: Cleanup - Workspace'
22

33
on:
44
workflow_call:
@@ -23,7 +23,6 @@ on:
2323
AWS_ASSUME_ROLE:
2424
required: true
2525

26-
2726
permissions:
2827
pull-requests: write
2928
id-token: write # This is required for requesting the JWT
@@ -75,4 +74,4 @@ jobs:
7574

7675
- name: Run Version Cleanup Script
7776
run: |
78-
./venv/bin/python3 scripts/cleanup_versions.py ${{ inputs.sandbox }}
77+
./venv/bin/python3 scripts/cleanup_versions.py ${{ inputs.sandbox }}

.github/workflows/cleanup-cloudfront-edge-associations.yml renamed to .github/workflows/base-cleanup-lambda-edge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Remove Lambda@Edge Associations'
1+
name: 'Z-BASE: Cleanup - Lambda@Edge'
22

33
on:
44
workflow_call:

.github/workflows/terraform-deploy-to-pre-prod-manual.yml renamed to .github/workflows/deploy-pre-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Deploy to Pre-Prod"
1+
name: "Deploy - Pre-prod"
22

33
on:
44
workflow_dispatch:

.github/workflows/terraform-deploy-to-prod-manual.yml renamed to .github/workflows/deploy-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# .github/workflows/terraform-dev
2-
name: "Deploy tagged version to Prod"
2+
name: "Deploy - Prod"
33

44
on:
55
workflow_dispatch:

.github/workflows/terraform-deploy-feature-to-sandbox.yml renamed to .github/workflows/deploy-sandbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# .github/workflows/terraform-dev
2-
name: "Deploy Feature Branch to Sandbox"
2+
name: "Deploy - Sandbox"
33

44
on:
55
workflow_dispatch:

0 commit comments

Comments
 (0)