Feedback #4964
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: Feedback | |
on: | |
schedule: | |
- cron: '0 * * * *' # every hour | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
feedback: | |
permissions: | |
issues: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
# Feedback loop: ask for something on PR/Issue and close if not provided or return to the queue on update. | |
# https://github.com/gradle/issue-management-action/blob/main/src/feedback.ts | |
- uses: gradle/issue-management-action@v1 | |
with: | |
script: "feedback" |