github.com/systematiccaos/gorm@v1.22.6/.github/workflows/missing_playground.yml (about)

     1  name: "Close Missing Playground issues"
     2  on:
     3    schedule:
     4    - cron: "*/10 * * * *"
     5  
     6  jobs:
     7    stale:
     8      runs-on: ubuntu-latest
     9      env:
    10        ACTIONS_STEP_DEBUG: true
    11      steps:
    12      - name: Close Stale Issues
    13        uses: actions/stale@v4
    14        with:
    15          repo-token: ${{ secrets.GITHUB_TOKEN }}
    16          stale-issue-message: "The issue has been automatically marked as stale as it missing playground pull request link, which is important to help others understand your issue effectively and make sure the issue hasn't been fixed on latest master, checkout [https://github.com/go-gorm/playground](https://github.com/go-gorm/playground) for details. it will be closed in 2 days if no further activity occurs. if you are asking question, please use the `Question` template, most likely your question already answered https://github.com/go-gorm/gorm/issues or described in the document https://gorm.io ✨ [Search Before Asking](https://stackoverflow.com/help/how-to-ask) ✨"
    17          stale-issue-label: "status:stale"
    18          days-before-stale: 0
    19          days-before-close: 2
    20          remove-stale-when-updated: true
    21          only-labels: "type:missing reproduction steps"