feedback_pull_request.yml - viper - [fork] go viper port for 9front
 (HTM) git clone https://git.drkhsh.at/viper.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       feedback_pull_request.yml (1202B)
       ---
            1 on:
            2   pull_request_target:
            3     types: [opened]
            4 
            5 jobs:
            6   comment:
            7     runs-on: ubuntu-latest
            8     steps:
            9       - uses: actions/github-script@v3
           10         with:
           11           github-token: ${{secrets.GITHUB_TOKEN}}
           12           script: |
           13             github.issues.createComment({
           14               issue_number: context.issue.number,
           15               owner: context.repo.owner,
           16               repo: context.repo.repo,
           17               body: `👋 Thanks for contributing to Viper! You are awesome! 🎉
           18 
           19             A maintainer will take a look at your pull request 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             })