Skip to content

Like to have several pic of same character in different expression and same background #40

Like to have several pic of same character in different expression and same background

Like to have several pic of same character in different expression and same background #40

Workflow file for this run

# A workflow to close issues where the author hasn't responded to a request for
# more information; see https://github.com/godofredoc/no-response for docs.
name: No Response
# Both `issue_comment` and `scheduled` event types are required.
on:
issue_comment:
types: [created]
schedule:
# Every day at 8:00 am
- cron: '0 8 * * *'
# All permissions not specified are set to 'none'.
permissions:
issues: write
jobs:
noResponse:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'googlecolab' }}
steps:
- uses: godofredoc/no-response@0ce2dc0e63e1c7d2b87752ceed091f6d32c9df09
with:
responseRequiredLabel: "reply-needed"
responseRequiredColor: 8b9213
closeComment: >
Without additional information we're not able to resolve this issue,
so it will be closed at this time. You're still free to add more
info and respond to any questions above, though. We'll re-open the
issue if you do. Thanks for your contribution!
daysUntilClose: 21
token: ${{ github.token }}