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

     1  name: "Close invalid questions 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: "This issue has been marked as invalid question, please give more information by following the `Question` template, if you believe there is a bug of GORM, please create a pull request that could reproduce the issue on [https://github.com/go-gorm/playground](https://github.com/go-gorm/playground), the issue will be closed in 2 days if no further activity occurs. 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:invalid question"
    22