Skip to content

Commit 6b9e862

Browse files
authored
Create welcome.yml
1 parent 965cbb5 commit 6b9e862

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/welcome.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Welcome Message
2+
on:
3+
issues:
4+
types: [opened]
5+
6+
jobs:
7+
welcome:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/github-script@v6
11+
with:
12+
script: |
13+
github.rest.issues.createComment({
14+
issue_number: context.issue.number,
15+
owner: context.repo.owner,
16+
repo: context.repo.repo,
17+
body: `👋 **Hi there!** Thank you for contributing to the **shadPS4 Community Compatibility List**! Your report helps everyone.
18+
19+
**Quick Links:**
20+
* 🎮 [shadPS4 Discord](https://discord.com/invite/shadps4)
21+
* ⭐ [Give a Star to this Repo](https://github.com/${context.repo.owner}/${context.repo.repo})
22+
23+
The automated labeler will process your report shortly. Have a great day!`
24+
})

0 commit comments

Comments
 (0)