github.com/fengjian1993/viper@v1.11.0/.github/workflows/feedback_issue.yml (about)

     1  on:
     2    issues:
     3      types: [opened]
     4  
     5  jobs:
     6    comment:
     7      runs-on: ubuntu-latest
     8      steps:
     9        - uses: actions/github-script@v5
    10          with:
    11            github-token: ${{secrets.GITHUB_TOKEN}}
    12            script: |
    13              github.rest.issues.createComment({
    14                issue_number: context.issue.number,
    15                owner: context.repo.owner,
    16                repo: context.repo.repo,
    17                body: `👋 Thanks for reporting!
    18  
    19              A maintainer will take a look at your issue shortly. 👀
    20  
    21              In the meantime: We are working on **Viper v2** and we would love to hear your thoughts about what you like or don't like about Viper, so we can improve or fix those issues.
    22  
    23              ⏰ If you have a couple minutes, please take some time and share your thoughts: https://forms.gle/R6faU74qPRPAzchZ9
    24  
    25              📣 If you've already given us your feedback, you can still help by spreading the news,
    26              either by sharing the above link or telling people about this on Twitter:
    27  
    28              https://twitter.com/sagikazarmark/status/1306904078967074816
    29  
    30              **Thank you!** ❤️
    31              `,
    32              })