Skip to content

Commit 3bb6376

Browse files
committed
Fix linter errors
1 parent 34f2159 commit 3bb6376

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/close-stale-issues.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Close Stale Issues
22

33
on:
44
schedule:
5-
- cron: '0 0 * * *' # Runs daily at midnight UTC
5+
- cron: "0 0 * * *" # Runs daily at midnight UTC
66
workflow_dispatch:
77

88
jobs:
@@ -13,9 +13,8 @@ jobs:
1313
uses: actions/stale@v8
1414
with:
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
16-
stale-issue-message: 'This issue has been automatically closed due to inactivity. If you still need help, please reopen the issue and provide the requested information.'
16+
stale-issue-message: "This issue has been automatically closed due to inactivity. If you still need help, please reopen the issue and provide the requested information."
1717
days-before-stale: 7
1818
days-before-close: 7
19-
only-labels: 'status:needs-more-info'
20-
exempt-issue-labels: 'status:do-not-close'
21-
19+
only-labels: "status:needs-more-info"
20+
exempt-issue-labels: "status:do-not-close"

0 commit comments

Comments
 (0)