Skip to content

Commit 3c16a66

Browse files
committed
ci: add welcome.yml (Begrüßung bei erstem Issue/PR)
1 parent b261294 commit 3c16a66

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

.github/workflows/welcome.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: 'Welcome New Contributors'
2+
3+
on:
4+
issues:
5+
types: [opened]
6+
pull_request_target:
7+
types: [opened]
8+
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
13+
jobs:
14+
welcome:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/first-interaction@v1
18+
with:
19+
repo-token: ${{ secrets.GITHUB_TOKEN }}
20+
issue-message: |
21+
Welcome! 👋 Thanks for opening your first issue in this repository.
22+
23+
We'll review it as soon as possible. In the meantime:
24+
- Check if there's a similar issue already open
25+
- Add as much detail as possible (steps to reproduce, expected behavior, environment)
26+
27+
If you'd like to contribute a fix, PRs are always welcome!
28+
pr-message: |
29+
Welcome! 👋 Thanks for your first pull request in this repository.
30+
31+
A maintainer will review it soon. Please make sure:
32+
- [ ] Your changes are tested
33+
- [ ] Documentation is updated if needed
34+
- [ ] The PR description explains what and why
35+
36+
Thanks for contributing!

0 commit comments

Comments
 (0)