We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3b537e commit 34ba63cCopy full SHA for 34ba63c
.github/workflows/bot-issue-reminder-no-pr.yml
@@ -2,19 +2,19 @@ name: bot-issue-reminder-no-pr
2
3
on:
4
schedule:
5
- - cron: "0 10 * * *"
+ - cron: "0 10 * * *" #runs daily at 10:00 UTC
6
workflow_dispatch:
7
inputs:
8
dry_run:
9
description: "Dry run (log only, do not post comments)"
10
required: false
11
- default: "true"
+ default: true #safe default for manual testing
12
type: boolean
13
14
permissions:
15
contents: read
16
- issues: write
17
- pull-requests: read
+ issues: write #needed to comment on issues
+ pull-requests: read #needed to check PR state
18
19
jobs:
20
reminder:
0 commit comments