Skip to content

Commit 2e31764

Browse files
authored
Merge pull request #7237 from IgniteUI/kdinev-patch-1
Create stale.yml
2 parents 1f58ce3 + 74fd7aa commit 2e31764

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/stale.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Mark stale issues and pull requests
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
jobs:
8+
stale:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/stale@v1
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: 'There has been no recent activity and this issue has been marked inactive.'
17+
stale-pr-message: 'There has been no recent activity and this PR has been marked inactive.'
18+
stale-issue-label: 'status: inactive'
19+
stale-pr-label: 'status: inactive'

0 commit comments

Comments
 (0)