diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index fd97f2d4..8971e564 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -1,11 +1,16 @@ name: Greetings -on: [pull_request, issues] +#on: [pull_request, issues] +on: + issues: + types: [opened] + pull_request_target: + types: [opened] jobs: greeting: runs-on: ubuntu-latest - permissions: - pull-requests: write - issues: write + #permissions: + #pull-requests: write + #issues: write steps: - uses: actions/first-interaction@v1 # At this moment, this GitHub Action has an issue: https://github.com/actions/first-interaction/issues/101