-
Notifications
You must be signed in to change notification settings - Fork 135
37 lines (33 loc) · 1.37 KB
/
review-extension-issue-created.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
name: Review Extension Issue Added
on:
issues:
types:
- labeled
jobs:
add-comment:
if: github.event.label.name == 'extension :gear:'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Append Issue Body
uses: julien-deramond/update-issue-body@v1
with:
issue-number: ${{ github.event.issue.number }}
body: |
### Review Tasks
If a task fails, contact the author to request changes before continuing.
- [ ] Double-check for existing extension
- [ ] Is the extension [packaged correctly](https://github.com/Nexus-Mods/Vortex/wiki/How-to-package-a-game-extension)?
- [ ] Does it install into Vortex?
- [ ] Does it correctly discover the game?
- [ ] Does it successfully install a mod?
- [ ] Does it successfully install a collection?
- [ ] Does the game run correctly with the mods installed?
When reviewed and passed, please complete the following tasks:
- [ ] Run the GitHub Actions to add to manifest
- [ ] Contact author
- [ ] Ask Community to enable the Vortex button for the game
- [ ] Update the #vortex-announcements channel on Discord
edit-mode: append
append-separator: newline