Add a welcome message for any new contributors

This commit is contained in:
Mario Limonciello 2021-11-02 11:23:26 -05:00 committed by Mario Limonciello
parent 7b2d75f94d
commit f65a242b1a

16
.github/workflows/greetings.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Greetings
on: [pull_request]
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Thanks for your contribution!'
pr-message: 'We really appreciate new contributors to the fwupd project. Please review https://github.com/fwupd/fwupd/blob/main/CONTRIBUTING.md for details on how to effectively write patches for pull requests.'