We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e68421 commit a41e7e0Copy full SHA for a41e7e0
1 file changed
.github/workflows/bluesky-new-post.yml
@@ -11,6 +11,11 @@ on:
11
# Using 13:00 UTC = 8 AM EST, 9 AM EDT
12
- cron: '0 13 * * *'
13
workflow_dispatch:
14
+ inputs:
15
+ target_date:
16
+ description: 'Date to look for posts (YYYY-MM-DD). Defaults to current date.'
17
+ required: false
18
+ type: string
19
20
jobs:
21
detect:
@@ -22,6 +27,7 @@ jobs:
22
27
url_prefix: ''
23
28
event_name: ${{ github.event_name }}
24
29
categories_field: 'categories'
30
+ target_date: ${{ inputs.target_date }}
25
31
26
32
wait-for-deploy:
33
needs: detect
0 commit comments