From a4df15c6ba9ff60f18024a34c3e5344e9a95bb8c Mon Sep 17 00:00:00 2001 From: Jake Page Date: Thu, 4 Aug 2022 10:16:58 +0100 Subject: [PATCH] only trigger on opening of issues and PRs --- .github/workflows/hello-to-new-contributions.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/hello-to-new-contributions.yml b/.github/workflows/hello-to-new-contributions.yml index b5dcece..1f16fbf 100644 --- a/.github/workflows/hello-to-new-contributions.yml +++ b/.github/workflows/hello-to-new-contributions.yml @@ -1,6 +1,12 @@ name: Auto message for PR's and Issues # description: Automatically send hello message to the first PR and Issue for new contributor. -on: [pull_request, issues] +on: + issues: + types: + - opened + pull_request: + types: + - opened jobs: build: name: Hello new contributor