You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried running the code below on a test repository. The issues get tagged appropriately but then they get closed despite using the days-before-close: -1 flag.
Steps to reproduce:
Create new repository
Add script below to .github/workflows
Open a couple of test issues
Wait for workflow to run
name: Mark stale issues and pull requestson:schedule:- cron: "10 * * * *"jobs:stale:runs-on: ubuntu-lateststeps:- uses: actions/stale@v1with:repo-token: ${{ secrets.GITHUB_TOKEN }}stale-issue-message: 'This issue has not been updated in the last TBD days'stale-pr-message: 'This PR has not been updated in the last TBD days'stale-issue-label: 'stale'stale-pr-label: 'stale'days-before-stale: 0days-before-close: -1
The text was updated successfully, but these errors were encountered:
I tried running the code below on a test repository. The issues get tagged appropriately but then they get closed despite using the
days-before-close: -1
flag.Steps to reproduce:
.github/workflows
The text was updated successfully, but these errors were encountered: