-
-
Notifications
You must be signed in to change notification settings - Fork 4
29 lines (24 loc) · 963 Bytes
/
auto-close.yml
File metadata and controls
29 lines (24 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Auto Close Issue
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
permissions:
contents: read
jobs:
close-not-reproducible-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
with:
repo-token: ${{ secrets.WDIO_BOT_GITHUB_TOKEN }}
only-issue-labels: 'Reproducible Example Missing'
stale-issue-label: 'Stale :classical_building:'
days-before-close: 0
days-before-stale: 7
close-issue-message: >
Thanks for raising this issue 🙏
Unfortunately, we are closing the issue as no reproducible samples were provided within 7 days.
If there are any updates, please reopen this issue or create new one.
If you have any questions please reach out to us on our [Discord](https://discord.webdriver.io/)
channel. We are happy to help you out there.