mirror of
https://github.com/python-kasa/python-kasa.git
synced 2026-02-28 13:49:57 +00:00
This PR is to update the GitHub Workflows and Actions to resolve residual warnings and errors and using the latest versions available.
71 lines
2.7 KiB
YAML
71 lines
2.7 KiB
YAML
---
|
|
name: Stale
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
if: github.repository_owner == 'python-kasa'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Stale Issues and PRs Policy
|
|
id: stale-issues-and-prs-policy
|
|
uses: actions/stale@v10
|
|
with:
|
|
repo-token: ${{ github.token }}
|
|
days-before-stale: 90
|
|
days-before-close: 7
|
|
operations-per-run: 250
|
|
remove-stale-when-updated: true
|
|
stale-issue-label: "stale"
|
|
exempt-issue-labels: "no-stale,help-wanted,needs-more-information,waiting-for-reporter"
|
|
stale-pr-label: "stale"
|
|
exempt-pr-labels: "no-stale"
|
|
stale-pr-message: >
|
|
There hasn't been any activity on this pull request recently. This
|
|
pull request has been automatically marked as stale because of that
|
|
and will be closed if no further activity occurs within 7 days.
|
|
|
|
If you are the author of this PR, please leave a comment if you want
|
|
to keep it open. Also, please rebase your PR onto the latest dev
|
|
branch to ensure that it's up to date with the latest changes.
|
|
|
|
Thank you for your contribution!
|
|
stale-issue-message: >
|
|
There hasn't been any activity on this issue recently. This issue has
|
|
been automatically marked as stale because of that. It will be closed
|
|
if no further activity occurs.
|
|
|
|
Please make sure to update to the latest python-kasa version and
|
|
check if that solves the issue.
|
|
|
|
Thank you for your contributions.
|
|
|
|
- name: needs-more-information and waiting-for-reporter Stale Issues Policy
|
|
id: specific-stale-issues-policy
|
|
uses: actions/stale@v10
|
|
with:
|
|
repo-token: ${{ github.token }}
|
|
only-labels: "needs-more-information,waiting-for-reporter"
|
|
days-before-stale: 21
|
|
days-before-close: 7
|
|
days-before-pr-stale: -1
|
|
days-before-pr-close: -1
|
|
operations-per-run: 250
|
|
remove-stale-when-updated: true
|
|
stale-issue-label: "stale"
|
|
exempt-issue-labels: "no-stale,help-wanted"
|
|
stale-issue-message: >
|
|
There hasn't been any activity on this issue recently and it has
|
|
been waiting for the reporter to provide information or an update.
|
|
This issue has been automatically marked as stale because of that.
|
|
It will be closed if no further activity occurs.
|
|
|
|
Please make sure to update to the latest python-kasa version and
|
|
check if that solves the issue.
|
|
|
|
Thank you for your contributions.
|