We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c0056 commit 66a4950Copy full SHA for 66a4950
1 file changed
.github/workflows/schedule.yml
@@ -0,0 +1,20 @@
1
+name: Schedule
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ branch:
7
+ type: string
8
+ default: "next"
9
+ schedule:
10
+ - cron: 0 23 * * *
11
12
+jobs:
13
14
+ uses: Geode-solutions/actions/.github/workflows/py-schedule.yml@master
15
+ with:
16
+ repos: ${{ vars.REPOS }}
17
+ branch: ${{ inputs.branch || 'next' }}
18
+ secrets:
19
+ TOKEN: ${{ secrets.TOKEN }}
20
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
0 commit comments