diff --git a/.github/workflows/thankyou.yaml b/.github/workflows/thankyou.yaml new file mode 100644 index 0000000..5cff293 --- /dev/null +++ b/.github/workflows/thankyou.yaml @@ -0,0 +1,16 @@ +name: Thank You on Pull Request + +on: + pull_request: + types: + - opened + +jobs: + thankyou: + runs-on: ubuntu-latest + + steps: + - name: Thank You Message + run: | + echo "Thank you for making the pull request, @${{ github.actor }}!" + echo "Your contribution is appreciated. 🙌"