mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 06:33:08 +02:00
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
This commit is contained in:
parent
2e75ae905d
commit
60bc2b4269
1 changed files with 25 additions and 0 deletions
25
.github/workflows/welcome.yml
vendored
Normal file
25
.github/workflows/welcome.yml
vendored
Normal file
|
@ -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 ❤️
|
Loading…
Reference in a new issue