failed attempt at training an ai to recognize project ideas in slack
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create greetings.yml

authored by

Jasper Mayone and committed by
GitHub
ac7a879a 68f4fbf5

+16
+16
.github/workflows/greetings.yml
··· 1 + name: Greetings 2 + 3 + on: [pull_request_target, issues] 4 + 5 + jobs: 6 + greeting: 7 + runs-on: ubuntu-latest 8 + permissions: 9 + issues: write 10 + pull-requests: write 11 + steps: 12 + - uses: actions/first-interaction@v1 13 + with: 14 + repo-token: ${{ secrets.GITHUB_TOKEN }} 15 + issue-message: "An issue? Here? That's odd. I'll have someone take a look." 16 + pr-message: "Thanks for your first PR! Please make sure you've updated the readme so we know that you claimed that file! We SOOOOOOO appreciate your contribution!"