From 5cf1de28cff4e5da03655c83cdc8101d153daf88 Mon Sep 17 00:00:00 2001 From: schmidtw Date: Fri, 21 Jun 2024 11:13:29 -0700 Subject: [PATCH] chore:Add auto releasing. --- .github/workflows/auto-release.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/auto-release.yml diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml new file mode 100644 index 00000000..d047cecd --- /dev/null +++ b/.github/workflows/auto-release.yml @@ -0,0 +1,14 @@ +# SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +# SPDX-License-Identifier: Apache-2.0 +--- +name: 'Auto Release' + +on: + schedule: # Run every day at 12:00 UTC + - cron: '0 12 * * *' + workflow_dispatch: + +jobs: + release: + uses: xmidt-org/shared-go/.github/workflows/auto-releaser.yml@ffc8c2d60d5cea02d9ebd149ac688b679debf356 # v4.4.8 + secrets: inherit