mirror of
https://github.com/micahqcade/custom_vesync.git
synced 2025-02-11 09:39:00 +01:00
e98b526acb
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
28 lines
945 B
YAML
28 lines
945 B
YAML
name: Mark stale issues and pull requests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "30 1 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/stale@v8.0.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: >
|
|
'There hasn't been any activity on this issue recently. Is this issue still present?
|
|
|
|
Please make sure to update to the latest Home Assistant version and version of this integration to see
|
|
if that solves the issue. Let us know if that works for you by adding a
|
|
comment 👍.
|
|
|
|
This issue now has been marked as stale and will be closed if no further
|
|
activity occurs. Thank you for your contributions.'
|
|
days-before-stale: 7
|
|
days-before-close: 7
|
|
stale-issue-label: 'no-issue-activity'
|
|
exempt-issue-labels: 'work-in-progress,blocked,help wanted,under investigation'
|