Skip to content

Commit

Permalink
Workflow file renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
flurdy committed Jan 23, 2025
1 parent 53ba62a commit 9969102
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -382,10 +382,10 @@ const config = convict({
default: 'remove-service.yml',
env: 'WORKFLOWS_REMOVE_DEPLOYMENT_FILES'
},
removeEcsTask: {
doc: 'Github workflow to trigger when removing ECS tasks',
removeEcsService: {
doc: 'Github workflow to trigger when removing ECS service',
format: String,
default: 'remove-ecs-task.yml',
default: 'remove-ecs.yml',
env: 'WORKFLOWS_REMOVE_ECS_TASK'
},
removeNginxUpstreams: {
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/remove/workflows/remove-ecs-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { triggerWorkflow } from '~/src/helpers/github/trigger-workflow.js'
export const removeEcsService = async (service, environments, zone, logger) => {
const org = config.get('github.org')
const repo = config.get('github.repos.cdpTfSvcInfra')
const workflow = config.get('workflows.removeEcsTask')
const workflow = config.get('workflows.removeEcsService')

await triggerWorkflow(
org,
Expand Down

0 comments on commit 9969102

Please sign in to comment.