We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 765987e commit a50b4f0Copy full SHA for a50b4f0
.github/workflows/scheduled.yml
@@ -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