From 695eee302346c8df13cf85d3c16b01d5cf4b8ec8 Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Wed, 24 Sep 2025 13:19:08 +0200 Subject: [PATCH] chore: Adde scheduled workflow --- .github/workflows/scheduled.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/scheduled.yml diff --git a/.github/workflows/scheduled.yml b/.github/workflows/scheduled.yml new file mode 100644 index 0000000..377936b --- /dev/null +++ b/.github/workflows/scheduled.yml @@ -0,0 +1,16 @@ +--- +name: scheduled +on: + workflow_dispatch: { } # Allows manually trigger this workflow + schedule: + - cron: "0 3 * * *" + +permissions: + pull-requests: write + id-token: write + contents: write + +jobs: + scheduled: + uses: cloudposse-github-actions/.github/.github/workflows/shared-scheduled.yml@main + secrets: inherit