Skip to content

chore: cleans up older non-reprodusable issues #3

chore: cleans up older non-reprodusable issues

chore: cleans up older non-reprodusable issues #3

Workflow file for this run

name: Close old issues with no-reproduction tag
on:
push:
branches:
- 4412-no-repro-cleanup
jobs:
find-issues:
name: Discover open issues with tag
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
only-issue-labels: ⁉️ no-reproduction
days-before-issue-stale: 2
1

Check failure on line 20 in .github/workflows/close-no-repro.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/close-no-repro.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
days-before-issue-close: 7
stale-issue-label: "stale"
stale-issue-message: "This issue is stale as it has been open for 21 days while being labeled with 'no-reproductuion'."
close-issue-message: "This issue was closed because it has been stale for 7 days."
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}