diff options
| author | April John <30842467+CutestNekoAqua@users.noreply.github.com> | 2023-10-07 17:12:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-07 17:12:30 +0200 |
| commit | 60bc2b426906b701f9b6615f969f993ce8bb6c68 (patch) | |
| tree | e5a42a029b9e54497ef1ca8f3a4d06b6d34eab46 /.github/workflows | |
| parent | Upload release artifacts (diff) | |
| download | sharkey-60bc2b426906b701f9b6615f969f993ce8bb6c68.tar.gz sharkey-60bc2b426906b701f9b6615f969f993ce8bb6c68.tar.bz2 sharkey-60bc2b426906b701f9b6615f969f993ce8bb6c68.zip | |
Greet new contributors (#58)
* Greet new contributors
Added a workflow to greet new contributors and first time issuers.
* add Token + msg change
* Change welcome action
* Use official GH action
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/welcome.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/welcome.yml b/.github/workflows/welcome.yml new file mode 100644 index 0000000000..a320276ee9 --- /dev/null +++ b/.github/workflows/welcome.yml @@ -0,0 +1,25 @@ +name: Welcome +on: + pull_request: + types: [opened] + issues: + types: [opened] +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1.2.0 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: | + 👋 @{{ author }} + Thanks for opening your first issue here! If you are reporting a bug, please make sure to include steps on how to reproduce it! :D + + pr-message: | + 👋 @{{ author }} + Thanks for opening this pull request! We will review it as soon as we can :3 + Please check out our contributing guidelines in the meantime. + + # FIRST_PR_MERGED: | + # 🎉 @{{ author }} + # Congrats on getting your first pull request merged! We are proud of you :3 ❤️ |