From 43e49210f9c574e0c8083ff6a326d7e31c3c42e1 Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Wed, 24 Sep 2025 13:15:54 +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