Fix biome remote crash #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: "Close stale issues" | |
# on: | |
# schedule: | |
# - cron: "0 0 * * *" | |
# jobs: | |
# stale: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/[email protected] | |
# with: | |
# repo-token: ${{ secrets.GITHUB_TOKEN }} | |
# stale-pr-message: 'Is this pr still needed?' | |
# stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Is this still an issue? If yes please comment that it still is.' | |
# stale-issue-label: 'no-issue-activity' | |
# exempt-issue-labels: 'enhancement,question,Needs-Info' | |
# stale-pr-label: 'no-pr-activity' | |
# exempt-pr-labels: 'awaiting-approval,work-in-progress,PrExempt' | |
# days-before-stale: 60 | |
# days-before-close: 90 | |