From 4a209e0c17a7a8a6792905d5808231bea0adb7b3 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 23 Oct 2025 08:30:14 -0700 Subject: [PATCH] Update greetings.yml --- .github/workflows/greetings.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index a75cdaa..e5dcdaf 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -2,17 +2,21 @@ name: Greetings on: issues: - types: - - opened + types: [opened] + pull_request: + types: [opened] permissions: issues: write + pull-requests: write jobs: greeting: + name: Greet first-time contributors runs-on: ubuntu-latest steps: - uses: actions/first-interaction@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - issue_message: "Dependabot's first issue" \ No newline at end of file + issue_message: "Dependabot's first issue" + pr_message: "Thank you for your pull request!" \ No newline at end of file