Skip to content

Stale

Stale #2

Workflow file for this run

name: Stale
on:
schedule:
- cron: "0 12 * * *"
workflow_dispatch:
jobs:
stale:
if: github.repository_owner == 'fronzbot'
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: stale-issues
uses: actions/[email protected]
repo-token: ${{ secrets.GITHUB_TOKEN }}

Check failure on line 17 in .github/workflows/stale.yml

View workflow run for this annotation

GitHub Actions / Stale

Invalid workflow file

The workflow is not valid. .github/workflows/stale.yml (Line: 17, Col: 9): Unexpected value 'repo-token' .github/workflows/stale.yml (Line: 18, Col: 9): Unexpected value 'days-before-stale'

Check failure on line 17 in .github/workflows/stale.yml

View workflow run for this annotation

GitHub Actions / Stale

Invalid workflow file

The workflow is not valid. .github/workflows/stale.yml (Line: 17, Col: 9): Unexpected value 'repo-token' .github/workflows/stale.yml (Line: 18, Col: 9): Unexpected value 'days-before-stale'

Check failure on line 17 in .github/workflows/stale.yml

View workflow run for this annotation

GitHub Actions / Stale

Invalid workflow file

The workflow is not valid. .github/workflows/stale.yml (Line: 17, Col: 9): Unexpected value 'repo-token' .github/workflows/stale.yml (Line: 18, Col: 9): Unexpected value 'days-before-stale'

Check failure on line 17 in .github/workflows/stale.yml

View workflow run for this annotation

GitHub Actions / Stale

Invalid workflow file

The workflow is not valid. .github/workflows/stale.yml (Line: 17, Col: 9): Unexpected value 'repo-token' .github/workflows/stale.yml (Line: 18, Col: 9): Unexpected value 'days-before-stale'

Check failure on line 17 in .github/workflows/stale.yml

View workflow run for this annotation

GitHub Actions / Stale

Invalid workflow file

The workflow is not valid. .github/workflows/stale.yml (Line: 17, Col: 9): Unexpected value 'repo-token' .github/workflows/stale.yml (Line: 18, Col: 9): Unexpected value 'days-before-stale'
days-before-stale: 60
days-before-close: 7
days-before-pr-stale: -1
days-before-pr-close: -1
remove-stale-when-updated: true
stale-issue-label: "stale"
exempt-issue-labels: "no-stale,help-wanted,priority"
stale-issue-message: >
There hasn't been any activity on this issue recently.
Please make sure to update to the latest blinkpy version and
check if that solves the issue. Let us know if that works for you by
adding a comment 👍
This issue has now been marked as stale and will be closed if no
further activity occurs. Thank you for your contributions.
- name: stale-prs
uses: actions/[email protected]
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 90
days-before-close: 7
days-before-issue-stale: -1
days-before-issue-close: -1
remove-stale-when-updated: true
stale-issue-label: "stale"
exempt-issue-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.
Thank you for your contributions.