Skip to content

Commit 7ebce1a

Browse files
authored
chore: Adde scheduled workflow (#49)
1 parent 79ffcde commit 7ebce1a

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)