CoolFace
Apppublic

TSE1966/Super-Resolution-Anime-Diffusion

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
no-response.yml34 linesDownload Raw Back to workflows
1name: No Response2 3# TODO: it seems not to work4# Modified from: https://raw.githubusercontent.com/github/docs/main/.github/workflows/no-response.yaml5 6# **What it does**: Closes issues that don't have enough information to be actionable.7# **Why we have it**: To remove the need for maintainers to remember to check back on issues periodically8#                     to see if contributors have responded.9# **Who does it impact**: Everyone that works on docs or docs-internal.10 11on:12  issue_comment:13    types: [created]14 15  schedule:16    # Schedule for five minutes after the hour every hour17    - cron: '5 * * * *'18 19jobs:20  noResponse:21    runs-on: ubuntu-latest22    steps:23      - uses: lee-dohm/no-response@v0.5.024        with:25          token: ${{ github.token }}26          closeComment: >27            This issue has been automatically closed because there has been no response28            to our request for more information from the original author. With only the29            information that is currently in the issue, we don't have enough information30            to take action. Please reach out if you have or find the answers we need so31            that we can investigate further.32            If you still have questions, please improve your description and re-open it.33            Thanks :-)34