Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@

name: Greetings

# on: [pull_request, issues]
on: issues
on:
issues:
types:
- opened
pull_request:
types:
- opened

jobs:
greeting:
Expand All @@ -27,14 +32,13 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
- uses: actions/first-interaction@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
issue_message: |
Hello @${{ github.actor }},
Thanks for finding the time to report the issue!
We really appreciate the community's efforts to improve Apache Kyuubi.
pr-message: |
pr_message: |
Hello @${{ github.actor }},
Thanks for finding the time to submit the Pull request, the Kyuubi community thanks you!
We really appreciate the community's efforts to improve Apache Kyuubi.
Expand Down
Loading