mirror of
https://github.com/python-kasa/python-kasa.git
synced 2026-07-08 14:52:03 +00:00
Some checks failed
CI / Perform Lint Checks (3.13) (push) Has been cancelled
CI / Python 3.11 on macos-latest (push) Has been cancelled
CI / Python 3.12 on macos-latest (push) Has been cancelled
CI / Python 3.13 on macos-latest (push) Has been cancelled
CI / Python 3.11 on ubuntu-latest (push) Has been cancelled
CI / Python 3.12 on ubuntu-latest (push) Has been cancelled
CI / Python 3.13 on ubuntu-latest (push) Has been cancelled
CI / Python 3.11 on windows-latest (push) Has been cancelled
CI / Python 3.12 on windows-latest (push) Has been cancelled
CI / Python 3.13 on windows-latest (push) Has been cancelled
CodeQL Checks / Analyze (python) (push) Has been cancelled
Stale / stale (push) Has been cancelled
Update action versions and pin to full SHA commit hashes. Windows build parallelization is disabled to avoid hung CI.
71 lines
2.8 KiB
YAML
71 lines
2.8 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@b5d41d4e1d5dceea10e7104786b73624c18a190f # 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@b5d41d4e1d5dceea10e7104786b73624c18a190f # 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.
|