Skip to content

Commit de59d19

Browse files
authored
Update welcome.yml
1 parent c5867b6 commit de59d19

File tree

1 file changed

+17
-25
lines changed

1 file changed

+17
-25
lines changed

.github/workflows/welcome.yml

Lines changed: 17 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,24 @@
1-
name: Multi-OS Build
2-
1+
name: Welcome Message
32
on:
4-
push:
5-
branches: [ "main" ]
6-
workflow_dispatch:
3+
issues:
4+
types: [opened]
75

86
jobs:
9-
build-windows:
10-
runs-on: windows-latest
7+
welcome:
8+
runs-on: ubuntu-latest
119
steps:
12-
- uses: actions/checkout@v3
13-
14-
- name: Set up Python
15-
uses: actions/setup-python@v4
10+
- uses: actions/github-script@v6
1611
with:
17-
python-version: '3.10'
18-
19-
- name: Install dependencies
20-
run: |
21-
python -m pip install --upgrade pip
22-
pip install pyinstaller
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.
2318
24-
- name: Build EXE
25-
run: |
26-
pyinstaller --noconsole --onefile --icon=shadps4-emulator.ico gui_app.py
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})
2722
28-
- name: Upload Artifact
29-
uses: actions/upload-artifact@v3
30-
with:
31-
name: shadPS4-Explorer-Windows
32-
path: dist/*.exe
23+
The automated labeler will process your report shortly. Have a great day!`
24+
})

0 commit comments

Comments
 (0)