From 9b8584ca39fb1382dcaec5a9dd9d93bf5f3fc893 Mon Sep 17 00:00:00 2001 From: Trevor Oler <18trevor3695@gmail.com> Date: Wed, 22 Jul 2026 23:36:36 -0400 Subject: [PATCH 1/2] adding new greating workflow Updated greetings workflow to use new action version and improved messages for first-time contributors. --- .github/workflows/greetings.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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 0000000..985e7b5 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,28 @@ +name: Greetings + +on: + issues: + types: [opened] + pull_request_target: + types: [opened] + +permissions: + issues: write + pull-requests: write + +jobs: + greeting: + name: Greet First-Time Contributors + runs-on: ubuntu-latest + + steps: + - name: Welcome first-time contributors + uses: actions/first-interaction@v3 + with: + issue_message: | + Thanks for opening your first issue! We appreciate you taking the + time to help improve the project. + + pr_message: | + Thanks for opening your first pull request! We appreciate your + contribution and will review it as soon as possible. From aef291a6ce4dbbd5f9f2cdb50d42ff8f94a53d37 Mon Sep 17 00:00:00 2001 From: ExoHayvan <18trevor3695@gmail.com> Date: Wed, 22 Jul 2026 23:54:55 -0400 Subject: [PATCH 2/2] fix(ci): keep greetings workflow issue-only --- .github/workflows/greetings.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 985e7b5..edaaebd 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -3,12 +3,9 @@ name: Greetings on: issues: types: [opened] - pull_request_target: - types: [opened] permissions: issues: write - pull-requests: write jobs: greeting: @@ -22,7 +19,3 @@ jobs: issue_message: | Thanks for opening your first issue! We appreciate you taking the time to help improve the project. - - pr_message: | - Thanks for opening your first pull request! We appreciate your - contribution and will review it as soon as possible.