From f65a242b1a30f83030efbee153b75fce109fbf9b Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Tue, 2 Nov 2021 11:23:26 -0500 Subject: [PATCH] Add a welcome message for any new contributors --- .github/workflows/greetings.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..2dd612ef9 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -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.'