-
-
Notifications
You must be signed in to change notification settings - Fork 554
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds github workflows for codeowner reviews and dmi5 (#1126)
* adds github workflows for codeowner reviews and dmi5 * fixes our title screen
- Loading branch information
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Codeowner Reviews | ||
|
||
# Controls when the workflow will run | ||
on: pull_request_target | ||
|
||
jobs: | ||
assign-users: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
#Parse the Codeowner file | ||
- name: CodeOwnersParser | ||
id: CodeOwnersParser | ||
uses: tgstation/CodeOwnersParser@v1 | ||
|
||
#Request reviews | ||
- name: Request reviews | ||
if: steps.CodeOwnersParser.outputs.owners != '' | ||
uses: tgstation/RequestReviewFromUser@v1 | ||
with: | ||
separator: ' ' | ||
users: ${{ steps.CodeOwnersParser.outputs.owners }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Check for DMI5 | ||
|
||
on: pull_request_target | ||
|
||
jobs: | ||
check-dmi5: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ParadiseSS13/DMI5Checker@v1 | ||
with: | ||
icons-path: 'icons' |
Binary file not shown.