Skip to content

Commit

Permalink
feat: Add a workflow for greetings when users first interactive with …
Browse files Browse the repository at this point in the history
…repo (#3175)

#### Summary
This PR is based on the issue #3161 

####
  • Loading branch information
cychiang committed Oct 23, 2022
1 parent ff122b5 commit bd1d185
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/greetings.yml
@@ -0,0 +1,15 @@
name: Greetings

on: [pull_request_target, issues]

jobs:
greeting:
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Thanks for reporting this issue 👍
You can reach us via [Discord](https://www.cloudquery.io/discord) too.
If you enjoy using this project, please consider starring it for support

0 comments on commit bd1d185

Please sign in to comment.