Skip to content

Commit

Permalink
TEAM #1177 - Add empty GHA workflow to begin testing task definition …
Browse files Browse the repository at this point in the history
…cleanup (#2201)
  • Loading branch information
coreycarvalho authored Dec 24, 2024
1 parent 6f2f7ef commit e97229f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/task-defnition-cleanup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Cleanup AWS ECS Task Definitions

on:
schedule:
- cron: '0 0 * * 0' # weekly -- Sunday at 00:00 UTC
workflow_dispatch:
inputs:
dry_run:
description: 'Perform a dry run without deregistering task definitions'
required: true
default: false
type: boolean

jobs:
cleanup-task-definitions:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: echo hello
run: echo hello

0 comments on commit e97229f

Please sign in to comment.