Skip to content

Commit a50b4f0

Browse files
authored
Add scheduled workflows (#41)
* Add scheduled workflows * upd comment
1 parent 765987e commit a50b4f0

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+
name: scheduled
2+
on:
3+
workflow_dispatch: {} # Allows manually trigger this workflow
4+
schedule:
5+
- cron: "0 3 * * *"
6+
7+
permissions:
8+
pull-requests: write
9+
id-token: write
10+
contents: write
11+
12+
jobs:
13+
scheduled:
14+
uses: cloudposse/github-actions-workflows-terraform-module/.github/workflows/scheduled.yml@main
15+
secrets:
16+
github_access_token: ${{ secrets.REPO_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)