Skip to content

Commit

Permalink
adds github workflows for codeowner reviews and dmi5 (#1126)
Browse files Browse the repository at this point in the history
* adds github workflows for codeowner reviews and dmi5

* fixes our title screen
  • Loading branch information
Fikou authored May 27, 2022
1 parent ee19e8b commit a39fb04
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/codeowner_reviews.yml
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 }}
13 changes: 13 additions & 0 deletions .github/workflows/dmi5.yml
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 modified icons/runtime/default_title.dmi
Binary file not shown.

0 comments on commit a39fb04

Please sign in to comment.