-
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (50 loc) · 1.5 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Test payloads
on:
push:
branches: [ main ]
jobs:
test:
if: github.repository_owner == 'AuroraEditor'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create config.php
run: |
echo "<?php
\$settings = array(
\"username\" => \"aurora-editor-bot\",
\"admins\" => array(\"0xWDG\",\"aurora-editor-bot\"),
\"github_token\" => \"${{ secrets.BOT_TOKEN }}\",
\"discord_webhook\" => \"${{ secrets.DISCORD_TEST_HOOK }}\",
\"serverURL\" => \"https://auroraeditor.github.io/AuroraEditor/AuroraEditorBot/\"
);" > config.php
- name: Run test (issue.json)
run: |
php index.php issue.json
sleep 2
- name: Run test (please_assign_me.json)
run: |
php index.php please_assign_me.json
sleep 2
- name: Run test (pr.json)
run: |
php index.php pr.json
sleep 2
- name: Run test (pr_reject.json)
run: |
php index.php pr_reject.json
sleep 2
- name: Run test (pr_accept.json)
run: |
php index.php pr_accept.json
sleep 2
- name: Run test (pr_closed.json)
run: |
php index.php pr_closed.json
sleep 2
- name: Run test (pr_merged.json)
run: |
php index.php pr_merged.json
sleep 2
- name: Remove config.php
run: rm config.php