Skip to content

Commit 1dd80b0

Browse files
Add close stale workflow to public repo (#273)
This helps remind requesters when we are explicitly setting the label to `Waiting for Feedback`, which does not affect other issues.
1 parent e1ebcff commit 1dd80b0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/stale.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
# Happen once per day at 1:30 AM
6+
- cron: '30 1 * * *'
7+
8+
jobs:
9+
sdk-close-stale:
10+
uses: launchdarkly/gh-actions/.github/workflows/sdk-stale.yml@main

0 commit comments

Comments
 (0)