From 7fc3c8f073efdd4733dbc96a7067fb4723fbb9ef Mon Sep 17 00:00:00 2001 From: Murilo Henrique Date: Thu, 7 May 2020 14:09:17 -0300 Subject: [PATCH] Remote on pull_request first interaction Because a creator of PR not have write permission on repository, this actions fail on all the PR created by community. This bug it is related on https://github.com/actions/first-interaction/issues/10 --- .github/workflows/greetings.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 50f4954..bdcaec7 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -1,6 +1,6 @@ name: Greetings -on: [pull_request, issues] +on: [issues] jobs: greeting: @@ -10,4 +10,3 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: 'Hooray! The first issue in a project we never forget ❤️' - pr-message: 'Thanks for your contribution! 🚀'