Skip to content

Commit 7b68874

Browse files
authored
Adde scheduled workflow (#9)
## what - Update workflows (`.github/workflows/`) to use `cloudposse-github-actions` org workflows ## why - Part of migration GHA to `cloudposse-github-actions` org
1 parent 9d99aca commit 7b68874

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/scheduled.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: scheduled
3+
on:
4+
workflow_dispatch: { } # Allows manually trigger this workflow
5+
schedule:
6+
- cron: "0 3 * * *"
7+
8+
permissions:
9+
pull-requests: write
10+
id-token: write
11+
contents: write
12+
13+
jobs:
14+
scheduled:
15+
uses: cloudposse-github-actions/.github/.github/workflows/shared-scheduled.yml@main
16+
secrets: inherit

0 commit comments

Comments
 (0)