forked from react-native-share/react-native-share
-
Notifications
You must be signed in to change notification settings - Fork 1
20 lines (16 loc) · 784 Bytes
/
stale.yml
File metadata and controls
20 lines (16 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Mark stale issues and pull requests
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v3
with:
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. You may also mark this issue as a "discussion" and i will leave this open'
stale-pr-message: 'This pull request has been marked as stale. Thank you for your contributions. You may also comment, or remove this label in order to avoid closing this.'
exempt-issue-milestones: 'awaiting-approval,work-in-progress, discussion'