We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 965cbb5 commit 6b9e862Copy full SHA for 6b9e862
.github/workflows/welcome.yml
@@ -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